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 967c056 commit d016e82Copy full SHA for d016e82
packages/frontend/src/main.tsx
@@ -19,7 +19,7 @@ const queryClient = new QueryClient({
19
staleTime: 20000,
20
cacheTime: 1000 * 60 * 60,
21
// By default, retries in React Query do not happen immediately after a request fails.
22
- // As is standard, a back-off delay is gradually applied to each retry attempt.
+ // As is standard, a back-off delay is gradually applied to each retry attempt
23
// The default retryDelay is set to double (starting at 1000ms) with each attempt, but not exceed 30 seconds.
24
retryDelay: attemptIndex => Math.min(1000 * 2 ** attemptIndex, 30000),
25
onError: err => {
0 commit comments