frontend client for gemstone. decentralised workplace app

refactor: correct label on error

serenity 0aa41cf4 15ccb6d1

Changed files
+2 -2
src
+1 -1
src/components/Settings/LatticeSettings.tsx
···
if (!lattices.ok) {
console.error("latticeQueryFn error.", lattices.error);
throw new Error(
-
`Something went wrong while getting the user's membership records.}`,
+
`Something went wrong while getting the user's lattice records.}`,
);
}
+1 -1
src/components/Settings/ShardSettings.tsx
···
if (!shards.ok) {
console.error("shardQueryFn error.", shards.error);
throw new Error(
-
`Something went wrong while getting the user's membership records.}`,
+
`Something went wrong while getting the user's shard records.}`,
);
}