From 7eb52e73eafabe5efa67b69cf0f02eb41ac73df5 Mon Sep 17 00:00:00 2001 From: Haileyesus Date: Fri, 13 Mar 2026 18:40:16 +0300 Subject: [PATCH] fix: show notifications settings tab --- src/components/settings/view/SettingsSidebar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/settings/view/SettingsSidebar.tsx b/src/components/settings/view/SettingsSidebar.tsx index c2e88f8..e6f56f4 100644 --- a/src/components/settings/view/SettingsSidebar.tsx +++ b/src/components/settings/view/SettingsSidebar.tsx @@ -1,4 +1,4 @@ -import { Bot, GitBranch, Key, ListChecks, Palette, Puzzle } from 'lucide-react'; +import { Bell, Bot, GitBranch, Key, ListChecks, Palette, Puzzle } from 'lucide-react'; import { useTranslation } from 'react-i18next'; import { cn } from '../../../lib/utils'; import { PillBar, Pill } from '../../../shared/view/ui'; @@ -22,6 +22,7 @@ const NAV_ITEMS: NavItem[] = [ { id: 'api', labelKey: 'mainTabs.apiTokens', icon: Key }, { id: 'tasks', labelKey: 'mainTabs.tasks', icon: ListChecks }, { id: 'plugins', labelKey: 'mainTabs.plugins', icon: Puzzle }, + { id: 'notifications', labelKey: 'mainTabs.notifications', icon: Bell }, ]; export default function SettingsSidebar({ activeTab, onChange }: SettingsSidebarProps) {