From b9f20ca16d05472f556425a740e598308a4b775b Mon Sep 17 00:00:00 2001 From: Johann150 Date: Sat, 1 Oct 2022 13:41:59 +0200 Subject: [PATCH] client: prefer absolute over relative imports --- packages/client/src/account.ts | 4 ++-- packages/client/src/components/signin.vue | 2 +- packages/client/src/directives/hotkey.ts | 2 +- packages/client/src/instance.ts | 2 +- packages/client/src/menu.ts | 2 +- packages/client/src/pizzax.ts | 6 +++--- packages/client/src/scripts/emojilist.ts | 2 +- packages/client/src/store.ts | 4 ++-- packages/client/src/theme-store.ts | 2 +- packages/client/src/ui/deck/deck-store.ts | 2 +- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/packages/client/src/account.ts b/packages/client/src/account.ts index 718c7b5b0..c10dcfb06 100644 --- a/packages/client/src/account.ts +++ b/packages/client/src/account.ts @@ -1,7 +1,7 @@ import { defineAsyncComponent, reactive } from 'vue'; import * as foundkey from 'foundkey-js'; -import { showSuspendedDialog } from './scripts/show-suspended-dialog'; -import { i18n } from './i18n'; +import { showSuspendedDialog } from '@/scripts/show-suspended-dialog'; +import { i18n } from '@/i18n'; import { del, get, set } from '@/scripts/idb-proxy'; import { apiUrl } from '@/config'; import { waiting, api, popup, popupMenu, success, alert } from '@/os'; diff --git a/packages/client/src/components/signin.vue b/packages/client/src/components/signin.vue index f4e32fc7e..6fb37f4fd 100644 --- a/packages/client/src/components/signin.vue +++ b/packages/client/src/components/signin.vue @@ -51,7 +51,7 @@