frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

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

refactor: clean up test function

serenity 8b030d48 752e6e7a

-7
-7
src/providers/authed/SessionsProvider.tsx
··· 32 32 return sessionsValue; 33 33 }; 34 34 35 - // TODO: remove this. temp testing function 36 - export const useFirstSessionWsTemp = () => { 37 - const wss = useSessions().sessionsMap.values().toArray(); 38 - if (wss.length === 0) return; 39 - return wss[0]; 40 - }; 41 - 42 35 export const SessionsProvider = ({ children }: { children: ReactNode }) => { 43 36 const { handshakesMap, isInitialising: handshakesInitialising } = 44 37 useHandshakes();