diff --git a/src/client/scripts/get-account-from-id.ts b/src/client/scripts/get-account-from-id.ts index ba3adceecc..065b41118c 100644 --- a/src/client/scripts/get-account-from-id.ts +++ b/src/client/scripts/get-account-from-id.ts @@ -1,4 +1,4 @@ -import { get } from '@/scripts/idb-proxy'; +import { get } from '@client/scripts/idb-proxy'; export async function getAccountFromId(id: string) { const accounts = await get('accounts') as { token: string; id: string; }[];