diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2024-10-15 12:28:40 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2024-10-15 12:28:40 -0400 |
| commit | 5c1d16947cd56b6642333a4a215960dee7d3775d (patch) | |
| tree | f7cc161c724030ea211b19dc1af6ce9da48f3f43 /packages/frontend/src/boot | |
| parent | fix indentation in build-assets.mjs (diff) | |
| download | sharkey-5c1d16947cd56b6642333a4a215960dee7d3775d.tar.gz sharkey-5c1d16947cd56b6642333a4a215960dee7d3775d.tar.bz2 sharkey-5c1d16947cd56b6642333a4a215960dee7d3775d.zip | |
fix import order in common.ts
Diffstat (limited to 'packages/frontend/src/boot')
| -rw-r--r-- | packages/frontend/src/boot/common.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/boot/common.ts b/packages/frontend/src/boot/common.ts index 9e1856cf35..f8ad123eca 100644 --- a/packages/frontend/src/boot/common.ts +++ b/packages/frontend/src/boot/common.ts @@ -8,7 +8,7 @@ import { compareVersions } from 'compare-versions'; import widgets from '@/widgets/index.js'; import directives from '@/directives/index.js'; import components from '@/components/index.js'; -import { version, lang, updateLocale, locale, langsVersion } from '@/config.js'; +import { version, lang, langsVersion, updateLocale, locale } from '@/config.js'; import { applyTheme } from '@/scripts/theme.js'; import { isDeviceDarkmode } from '@/scripts/is-device-darkmode.js'; import { updateI18n } from '@/i18n.js'; |