diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-27 10:14:17 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-27 10:14:17 +0900 |
| commit | 25df56dfd0b97acfb4d6c76c9154f560f56ab150 (patch) | |
| tree | c5d6d73d802875c9a90dde464a7f8d0e4c40f072 /packages/frontend/src/pages | |
| parent | tweak locale (diff) | |
| download | misskey-25df56dfd0b97acfb4d6c76c9154f560f56ab150.tar.gz misskey-25df56dfd0b97acfb4d6c76c9154f560f56ab150.tar.bz2 misskey-25df56dfd0b97acfb4d6c76c9154f560f56ab150.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/pages')
| -rw-r--r-- | packages/frontend/src/pages/settings/plugin.install.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/pages/welcome.entrance.classic.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/settings/plugin.install.vue b/packages/frontend/src/pages/settings/plugin.install.vue index 22b53b4b96..8ed7f2a7b6 100644 --- a/packages/frontend/src/pages/settings/plugin.install.vue +++ b/packages/frontend/src/pages/settings/plugin.install.vue @@ -40,7 +40,7 @@ async function install() { code.value = null; router.push('/settings/plugin'); - } catch (err) { + } catch (err: any) { os.alert({ type: 'error', title: 'Install failed', diff --git a/packages/frontend/src/pages/welcome.entrance.classic.vue b/packages/frontend/src/pages/welcome.entrance.classic.vue index c2cf937c71..cddec3332e 100644 --- a/packages/frontend/src/pages/welcome.entrance.classic.vue +++ b/packages/frontend/src/pages/welcome.entrance.classic.vue @@ -53,7 +53,7 @@ function getInstanceIcon(instance: Misskey.entities.FederationInstance): string misskeyApiGet('federation/instances', { sort: '+pubSub', limit: 20, - blocked: 'false', + blocked: false, }).then(_instances => { instances.value = _instances; }); |