import { ConfirmModal } from '../ui/modal'; export interface UnsavedChangesDialogProps { open: boolean; onCancel: () => void; onConfirm: () => void; } export function UnsavedChangesDialog({ open, onCancel, onConfirm }: UnsavedChangesDialogProps) { return ( { if (!next) onCancel(); }} kicker="EDITOR ยท UNSAVED CHANGES" title="Discard unsaved changes?" description="You have unsaved changes. Switching stacks will discard them." confirmLabel="Discard changes" onConfirm={onConfirm} >

You have unsaved changes. Switching stacks will discard them.

); }