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 variable

serenity e5d21ed9 3414dded

+4 -4
+2 -2
src/components/Settings/LatticeInfo.tsx
··· 9 9 import { View } from "react-native"; 10 10 11 11 export const LatticeInfo = ({ 12 - lattice: shard, 12 + lattice, 13 13 }: { 14 14 lattice: { 15 15 uri: Required<AtUri>; 16 16 value: SystemsGmstnDevelopmentLattice; 17 17 }; 18 18 }) => { 19 - const latticeDomain = shard.uri.rKey; 19 + const latticeDomain = lattice.uri.rKey; 20 20 const { isLoading, data: latticeInfo } = useQuery({ 21 21 queryKey: ["shardInfo", latticeDomain], 22 22 queryFn: async () => {
+2 -2
src/components/Settings/RegisterLatticeModalContent.tsx
··· 26 26 const agent = useOAuthAgentGuaranteed(); 27 27 const session = useOAuthSessionGuaranteed(); 28 28 const queryClient = useQueryClient(); 29 - const { mutate: newShardMutation, isPending: mutationPending } = 29 + const { mutate: newLatticeMutation, isPending: mutationPending } = 30 30 useMutation({ 31 31 mutationFn: async () => { 32 32 const registerResult = await registerNewLattice({ ··· 106 106 paddingVertical: 10, 107 107 }} 108 108 onPress={() => { 109 - newShardMutation(); 109 + newLatticeMutation(); 110 110 }} 111 111 > 112 112 {mutationPending ? (