Update StabilityProvider.tsx

This commit is contained in:
talksik
2022-06-12 12:26:49 -05:00
parent a606f98c3c
commit b70c2cef8c
@@ -26,7 +26,7 @@ export function StabilityProvider({ children }: { children: React.ReactNode }) {
useEffect(() => {
const interval = setInterval(() => {
if (!state.loading) state.retry();
}, 5000);
}, 30000);
return () => clearInterval(interval);
}, [state.loading]);