import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from '@/components/ui/dialog'; import { Label } from '@/components/ui/label'; import { Switch } from '@/components/ui/switch'; import { GitBranch, Settings2 } from 'lucide-react'; interface WorktreeSettingsDialogProps { open: boolean; onOpenChange: (open: boolean) => void; addFeatureUseSelectedWorktreeBranch: boolean; onAddFeatureUseSelectedWorktreeBranchChange: (value: boolean) => void; } export function WorktreeSettingsDialog({ open, onOpenChange, addFeatureUseSelectedWorktreeBranch, onAddFeatureUseSelectedWorktreeBranchChange, }: WorktreeSettingsDialogProps) { return ( Worktree Settings Configure how worktrees affect feature creation and organization.
{/* Use Selected Worktree Branch Setting */}

When enabled, the Add Feature dialog will default to custom branch mode with the currently selected worktree branch pre-filled.

); }