Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-23 15:09:51 +00:00
parent 55f1e8b8f0
commit 0998a4523e

View file

@ -23,6 +23,9 @@ export function useAgentInstance() {
return useQuery({
queryKey: ["agent-instance", user?.id],
enabled: !!user,
refetchInterval: 10000,
staleTime: 0,
refetchOnWindowFocus: true,
queryFn: async (): Promise<AgentInstance | null> => {
const { data, error } = await supabase
.from("agent_instances")