We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7e7dec commit 4281483Copy full SHA for 4281483
src/lib/hooks/resource-names.svelte.ts
@@ -70,7 +70,8 @@ export const provideResourceNamesContext = () => {
70
71
const partIDs = $derived(Object.keys(clients.current));
72
const options = $derived(
73
- Object.entries(clients.current).map(([partID, client]) => {
+ partIDs.map((partID) => {
74
+ const client = clients.current[partID];
75
return queryOptions({
76
enabled: client !== undefined,
77
queryKey: [
0 commit comments