this repo has no description
0
fork

Configure Feed

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

Try fix non-logged-in bug

+1 -1
+1 -1
src/components/menu.jsx
··· 13 13 function NavMenu(props) { 14 14 const snapStates = useSnapshot(states); 15 15 const { instance, authenticated } = api(); 16 - const accounts = store.local.getJSON('accounts'); 16 + const accounts = store.local.getJSON('accounts') || []; 17 17 const currentAccount = accounts.find( 18 18 (account) => account.info.id === store.session.get('currentAccount'), 19 19 );