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 ab41a2f commit 065e9c1Copy full SHA for 065e9c1
packages/hooks-react/src/useCheckAccess.ts
@@ -31,7 +31,7 @@ const useCheckAccess = () => {
31
const hasAccess = await accountController.checkEntitlements(offerId);
32
33
if (hasAccess) {
34
- await accountController.reloadSubscriptions({ retry: 10 });
+ await accountController.reloadSubscriptions({ retry: 10, delay: 2000 });
35
callback?.(true);
36
} else if (--iterations === 0) {
37
window.clearInterval(intervalRef.current);
0 commit comments