this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix setting lastAccessedAt on undefined

+1
+1
src/utils/store-utils.js
··· 11 11 export function getAccount(id) { 12 12 const accounts = getAccounts(); 13 13 const account = id ? accounts.find((a) => a.info.id === id) : accounts[0]; 14 + if (!account) return null; 14 15 account.lastAccessedAt = Date.now(); 15 16 setTimeout(() => { 16 17 saveAccounts(accounts);