diff --git a/web/pages/notifications.tsx b/web/pages/notifications.tsx index 0c748ec7..a4c25ed3 100644 --- a/web/pages/notifications.tsx +++ b/web/pages/notifications.tsx @@ -67,9 +67,11 @@ export default function Notifications() { useEffect(() => { const query = { ...router.query } + if (query.tab === 'settings') { + setActiveIndex(1) + } if (query.section) { setNavigateToSection(query.section as string) - setActiveIndex(1) } }, [router.query])