This commit is contained in:
tamaina
2021-02-24 18:40:24 +09:00
parent 0b88e08d81
commit 19481de459
6 changed files with 28 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
import { get } from 'idb-keyval';
import { get } from '@/scripts/idb-proxy';
export async function getAccountFromId(id: string) {
const accounts = await get('accounts') as { token: string; id: string; }[];