diff --git a/web/components/notifications-icon.tsx b/web/components/notifications-icon.tsx index cc892ed9..63b3e3fe 100644 --- a/web/components/notifications-icon.tsx +++ b/web/components/notifications-icon.tsx @@ -16,11 +16,11 @@ export default function NotificationsIcon(props: { className?: string }) { useEffect(() => { if (user) { const bonusChecker = setInterval(() => { - requestBonuses({}) + requestBonuses({}).catch(console.log) return () => { clearInterval(bonusChecker) } - }, 1000 * 60) + }, 1000 * 65) } }, [user])