parent
037837b551
commit
0e4a111f81
1714 changed files with 20803 additions and 11751 deletions
7
packages/client/src/scripts/get-account-from-id.ts
Normal file
7
packages/client/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(e => e.id === id);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue