Update StabilityProvider.tsx
This commit is contained in:
@@ -26,7 +26,7 @@ export function StabilityProvider({ children }: { children: React.ReactNode }) {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const interval = setInterval(() => {
|
const interval = setInterval(() => {
|
||||||
if (!state.loading) state.retry();
|
if (!state.loading) state.retry();
|
||||||
}, 5000);
|
}, 30000);
|
||||||
|
|
||||||
return () => clearInterval(interval);
|
return () => clearInterval(interval);
|
||||||
}, [state.loading]);
|
}, [state.loading]);
|
||||||
|
|||||||
Reference in New Issue
Block a user