Skip to content

Commit d016e82

Browse files
committed
fe: lint
1 parent 967c056 commit d016e82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/frontend/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const queryClient = new QueryClient({
1919
staleTime: 20000,
2020
cacheTime: 1000 * 60 * 60,
2121
// 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.
22+
// As is standard, a back-off delay is gradually applied to each retry attempt
2323
// The default retryDelay is set to double (starting at 1000ms) with each attempt, but not exceed 30 seconds.
2424
retryDelay: attemptIndex => Math.min(1000 * 2 ** attemptIndex, 30000),
2525
onError: err => {

0 commit comments

Comments
 (0)