fix(web): disable retry on useObject (404 resolves to null)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-03 22:53:32 +02:00
parent cf02eeb991
commit 01f43e1f67
+2
View File
@@ -51,6 +51,8 @@ export function useObject(id: string) {
return data; return data;
}, },
// A 404 resolves to null rather than erroring, so don't retry it.
retry: false,
}); });
} }