import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from '@/components/ui/dialog'; import { Label } from '@/components/ui/label'; import { Switch } from '@/components/ui/switch'; import { FastForward, Settings2 } from 'lucide-react'; interface AutoModeSettingsDialogProps { open: boolean; onOpenChange: (open: boolean) => void; skipVerificationInAutoMode: boolean; onSkipVerificationChange: (value: boolean) => void; } export function AutoModeSettingsDialog({ open, onOpenChange, skipVerificationInAutoMode, onSkipVerificationChange, }: AutoModeSettingsDialogProps) { return ( Auto Mode Settings Configure how auto mode handles feature execution and dependencies.
{/* Skip Verification Setting */}

When enabled, auto mode will grab features even if their dependencies are not verified, as long as they are not currently running. This allows faster pipeline execution without waiting for manual verification.

); }