diff --git a/apps/ui/src/components/views/board-view/worktree-panel/worktree-panel.tsx b/apps/ui/src/components/views/board-view/worktree-panel/worktree-panel.tsx index a941f696..e50f1e59 100644 --- a/apps/ui/src/components/views/board-view/worktree-panel/worktree-panel.tsx +++ b/apps/ui/src/components/views/board-view/worktree-panel/worktree-panel.tsx @@ -1,4 +1,3 @@ - import { Button } from "@/components/ui/button"; import { GitBranch, Plus, RefreshCw } from "lucide-react"; import { cn, pathsEqual } from "@/lib/utils"; @@ -88,18 +87,20 @@ export function WorktreePanel({ : pathsEqual(worktree.path, currentWorktreePath); }; - const handleBranchDropdownOpenChange = (worktree: WorktreeInfo) => (open: boolean) => { - if (open) { - fetchBranches(worktree.path); - resetBranchFilter(); - } - }; + const handleBranchDropdownOpenChange = + (worktree: WorktreeInfo) => (open: boolean) => { + if (open) { + fetchBranches(worktree.path); + resetBranchFilter(); + } + }; - const handleActionsDropdownOpenChange = (worktree: WorktreeInfo) => (open: boolean) => { - if (open) { - fetchBranches(worktree.path); - } - }; + const handleActionsDropdownOpenChange = + (worktree: WorktreeInfo) => (open: boolean) => { + if (open) { + fetchBranches(worktree.path); + } + }; if (!useWorktreesEnabled) { return null; @@ -108,7 +109,7 @@ export function WorktreePanel({ return (