frontend client for gemstone. decentralised workplace app

chore: formatting

serenity a6447abe bf23395d

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