aboutsummaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/hooks
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-09-27 11:31:58 -0300
committerSebastian <sebasjm@gmail.com>2023-09-27 11:31:58 -0300
commitcdb7d78f22a98a9bf48d44c2106e29dd48338d78 (patch)
treee9a7b1538291e959f5d7a51400e84e938ff4260a /packages/demobank-ui/src/hooks
parent649d7046936f6964737028385e3cbe9ad0097c88 (diff)
missing multiplier
Diffstat (limited to 'packages/demobank-ui/src/hooks')
-rw-r--r--packages/demobank-ui/src/hooks/useCredentialsChecker.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/demobank-ui/src/hooks/useCredentialsChecker.ts b/packages/demobank-ui/src/hooks/useCredentialsChecker.ts
index 7745e2f5e..b3dedb654 100644
--- a/packages/demobank-ui/src/hooks/useCredentialsChecker.ts
+++ b/packages/demobank-ui/src/hooks/useCredentialsChecker.ts
@@ -15,7 +15,7 @@ export function useCredentialsChecker() {
scope: "readwrite" as "write", //FIX: different than merchant
duration: {
// d_us: "forever" //FIX: should return shortest
- d_us: 60 * 60 * 24 * 7
+ d_us: 60 * 60 * 24 * 7 * 1000 * 1000
},
refreshable: true,
}