From 09767a0d5676df56b5d2bb73a32bee20eda00bcd Mon Sep 17 00:00:00 2001 From: tamaina Date: Tue, 23 Mar 2021 21:29:22 +0900 Subject: [PATCH] fix @ client --- src/client/scripts/get-account-from-id.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }[];