diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-11-26 19:14:40 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-11-26 19:14:40 +0900 |
| commit | 6cb6f794e5c3a53c6d855482d45eb187e1b9722c (patch) | |
| tree | 7ce3f64eb8d4ae1e572745a61975f0514a0eb07d /packages/frontend/src | |
| parent | enhance(frontend): viewportの属性を起動後に変化させないこと... (diff) | |
| download | misskey-6cb6f794e5c3a53c6d855482d45eb187e1b9722c.tar.gz misskey-6cb6f794e5c3a53c6d855482d45eb187e1b9722c.tar.bz2 misskey-6cb6f794e5c3a53c6d855482d45eb187e1b9722c.zip | |
clean up
Diffstat (limited to 'packages/frontend/src')
| -rw-r--r-- | packages/frontend/src/boot/common.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/boot/common.ts b/packages/frontend/src/boot/common.ts index 4e8281aaf2..355ef01c83 100644 --- a/packages/frontend/src/boot/common.ts +++ b/packages/frontend/src/boot/common.ts @@ -3,7 +3,7 @@ * SPDX-License-Identifier: AGPL-3.0-only */ -import { computed, watch, version as vueVersion } from 'vue'; +import { watch, version as vueVersion } from 'vue'; import { compareVersions } from 'compare-versions'; import { version, lang, apiUrl, isSafeMode } from '@@/js/config.js'; import defaultLightTheme from '@@/themes/l-light.json5'; @@ -15,11 +15,11 @@ import directives from '@/directives/index.js'; import components from '@/components/index.js'; import { applyTheme } from '@/theme.js'; import { isDeviceDarkmode } from '@/utility/is-device-darkmode.js'; -import { updateI18n, i18n } from '@/i18n.js'; +import { i18n } from '@/i18n.js'; import { refreshCurrentAccount, login } from '@/accounts.js'; import { store } from '@/store.js'; import { fetchInstance, instance } from '@/instance.js'; -import { deviceKind, updateDeviceKind } from '@/utility/device-kind.js'; +import { updateDeviceKind } from '@/utility/device-kind.js'; import { reloadChannel } from '@/utility/unison-reload.js'; import { getUrlWithoutLoginId } from '@/utility/login-id.js'; import { getAccountFromId } from '@/utility/get-account-from-id.js'; |