frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

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

refactor: redo app ready state

serenity 604de1f5 db0e9e6d

+2 -2
+2 -2
src/app/(protected)/index.tsx
··· 11 11 const { channels } = useChannelRecords(); 12 12 const { isInitialising } = useSessions(); 13 13 14 - const isAppReady = channels.length > 0 && !isInitialising; 14 + const isAppReady = !isInitialising; 15 15 return ( 16 16 <View 17 17 style={{ ··· 30 30 <Loading /> 31 31 ) 32 32 ) : ( 33 - <Redirect href={"/login"} /> 33 + <Redirect href="/login" /> 34 34 )} 35 35 </View> 36 36 );