diff --git a/frontend/src/renderer/components/Sidebar.tsx b/frontend/src/renderer/components/Sidebar.tsx index 84615b252..c9567db77 100644 --- a/frontend/src/renderer/components/Sidebar.tsx +++ b/frontend/src/renderer/components/Sidebar.tsx @@ -585,15 +585,7 @@ function ProjectItem({ // One worker-session row. Reads as a link by default; a hover-revealed pencil // flips the label into an inline input (Enter/blur saves, Escape cancels) that // persists through the daemon rename endpoint, so the new name survives reload. -function SessionRow({ - session, - active, - onOpen, -}: { - session: WorkspaceSession; - active: boolean; - onOpen: () => void; -}) { +function SessionRow({ session, active, onOpen }: { session: WorkspaceSession; active: boolean; onOpen: () => void }) { const queryClient = useQueryClient(); const [isEditing, setIsEditing] = useState(false); const [draft, setDraft] = useState(session.title);