diff --git a/src/components/app-shell.tsx b/src/components/app-shell.tsx
index f5e88da..d6297f2 100644
--- a/src/components/app-shell.tsx
+++ b/src/components/app-shell.tsx
@@ -1,7 +1,28 @@
import { Link, useLocation, useNavigate } from "@tanstack/react-router";
import { useAuth } from "@/lib/auth";
import { Button } from "@/components/ui/button";
-import { Briefcase, Users, FileText, Receipt, ShieldCheck, LogOut, Scale, LayoutDashboard, Calendar as CalendarIcon, CheckSquare, MessageSquare, Activity, DollarSign, FolderOpen, Files as FilesIcon, Settings as SettingsIcon, ClipboardList, UserPlus, User as UserIcon, Inbox as InboxIcon } from "lucide-react";
+import {
+ Briefcase,
+ Users,
+ FileText,
+ Receipt,
+ ShieldCheck,
+ LogOut,
+ Scale,
+ LayoutDashboard,
+ Calendar as CalendarIcon,
+ CheckSquare,
+ MessageSquare,
+ Activity,
+ DollarSign,
+ FolderOpen,
+ Files as FilesIcon,
+ Settings as SettingsIcon,
+ ClipboardList,
+ UserPlus,
+ User as UserIcon,
+ Inbox as InboxIcon,
+} from "lucide-react";
import { cn } from "@/lib/utils";
import type { ReactNode } from "react";
import { HeaderTimer } from "@/components/timer/header-timer";
@@ -55,7 +76,7 @@ export function AppShell({ children }: { children: ReactNode }) {