frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

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

refactor: rename

serenity dd022caf 23d463bf

+2 -2
+2 -2
src/components/Settings/ShardSettings.tsx
··· 24 24 const { data: shards, isLoading } = useQuery({ 25 25 queryKey: ["shard", session.did], 26 26 queryFn: async () => { 27 - return await shardQueryFn(session); 27 + return await shardsQueryFn(session); 28 28 }, 29 29 }); 30 30 ··· 157 157 ); 158 158 }; 159 159 160 - const shardQueryFn = async (session: OAuthSession) => { 160 + const shardsQueryFn = async (session: OAuthSession) => { 161 161 const shards = await getUserShards({ 162 162 pdsEndpoint: session.serverMetadata.issuer, 163 163 did: session.did,