File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @hop-protocol/frontend" ,
3- "version" : " 0.0.35 " ,
3+ "version" : " 0.0.36 " ,
44 "description" : " Hop Protocol Frontend" ,
55 "author" : " Authereum Labs, Inc." ,
66 "license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const queryClient = new QueryClient({
2020 cacheTime : 1000 * 60 * 60 ,
2121 // By default, retries in React Query do not happen immediately after a request fails.
2222 // 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:
23+ // 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 => {
2626 console . log ( `react-query error:` , err )
You can’t perform that action at this time.
0 commit comments