Skip to content

Commit 4fd6478

Browse files
committed
Merge branch 'staging' of github.com:hop-protocol/hop into production
2 parents 4a0976b + d9f9520 commit 4fd6478

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hop-protocol/frontend",
3-
"version": "0.0.43",
3+
"version": "0.0.44",
44
"description": "Hop Protocol Frontend",
55
"author": "Authereum Labs, Inc.",
66
"license": "MIT",

packages/frontend/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const queryClient = new QueryClient({
1818
queries: {
1919
staleTime: 20000,
2020
cacheTime: 1000 * 60 * 60,
21-
// By default, retries in React Query do not happen immediately after a request fails.
21+
// 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.
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),

0 commit comments

Comments
 (0)