Remove unused app ID schema (#27105)

This commit is contained in:
Kit Langton
2026-05-12 13:09:23 -04:00
committed by GitHub
parent 2b9af91568
commit bc4fdb8370
2 changed files with 13 additions and 6 deletions
@@ -40,3 +40,16 @@ export function useGlobalSync() {
},
}
}
export function useQueryOptions() {
return {
agents: (directory: string) => ({
queryKey: [directory, "agents"],
queryFn: async () => [],
}),
providers: (directory: string | null) => ({
queryKey: [directory, "providers"],
queryFn: async () => provider,
}),
}
}