diff --git a/src/components/layout/app-shell.tsx b/src/components/layout/app-shell.tsx index 85ce909..5f0a928 100644 --- a/src/components/layout/app-shell.tsx +++ b/src/components/layout/app-shell.tsx @@ -8,7 +8,6 @@ import { useSip } from '@/providers/sip-provider'; import { CallWidget } from '@/components/call-desk/call-widget'; import { MaintOtpModal } from '@/components/modals/maint-otp-modal'; import { AgentStatusToggle } from '@/components/call-desk/agent-status-toggle'; -import { NotificationBell } from './notification-bell'; import { ResumeSetupBanner } from '@/components/setup/resume-setup-banner'; import { Badge } from '@/components/base/badges/badges'; import { useAuth } from '@/providers/auth-provider'; @@ -25,7 +24,7 @@ interface AppShellProps { export const AppShell = ({ children }: AppShellProps) => { const { pathname } = useLocation(); - const { isCCAgent, isAdmin } = useAuth(); + const { isCCAgent } = useAuth(); const { isOpen, activeAction, close } = useMaintShortcuts(); const { connectionStatus, isRegistered } = useSip(); const networkQuality = useNetworkStatus(); @@ -118,35 +117,25 @@ export const AppShell = ({ children }: AppShellProps) => {
{description}