rename: client -> frontend
This commit is contained in:
7
packages/frontend/src/scripts/get-account-from-id.ts
Normal file
7
packages/frontend/src/scripts/get-account-from-id.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { get } from '@/scripts/idb-proxy';
|
||||
|
||||
export async function getAccountFromId(id: string) {
|
||||
const accounts = await get('accounts') as { token: string; id: string; }[];
|
||||
if (!accounts) console.log('Accounts are not recorded');
|
||||
return accounts.find(account => account.id === id);
|
||||
}
|
Reference in New Issue
Block a user