frontend client for gemstone. decentralised workplace app
1
fork

Configure Feed

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

chore: formatting

serenity a6447abe bf23395d

+4 -4
+2 -2
src/components/Settings/LatticeSettings.tsx
··· 16 16 const { atoms, typography } = useFacet(); 17 17 const session = useOAuthSessionGuaranteed(); 18 18 const [showRegisterModal, setShowRegisterModal] = useState(false); 19 - const { useQuery } = useLatticesQuery(session) 19 + const { useQuery } = useLatticesQuery(session); 20 20 21 - const { data: lattices, isLoading } = useQuery() 21 + const { data: lattices, isLoading } = useQuery(); 22 22 23 23 return isLoading ? ( 24 24 <Loading />
+2 -2
src/components/Settings/ShardSettings.tsx
··· 16 16 const { atoms, typography } = useFacet(); 17 17 const session = useOAuthSessionGuaranteed(); 18 18 const [showRegisterModal, setShowRegisterModal] = useState(false); 19 - const { useQuery } = useShardsQuery(session) 19 + const { useQuery } = useShardsQuery(session); 20 20 21 - const { data: shards, isLoading } = useQuery() 21 + const { data: shards, isLoading } = useQuery(); 22 22 23 23 return isLoading ? ( 24 24 <Loading />