diff --git a/shop/components/wizard/summary-sidebar.tsx b/shop/components/wizard/summary-sidebar.tsx index ff61ac6..496eaa0 100644 --- a/shop/components/wizard/summary-sidebar.tsx +++ b/shop/components/wizard/summary-sidebar.tsx @@ -8,6 +8,14 @@ import { Input } from '@/components/ui/input' import { Button } from '@/components/ui/button' import { Pencil, Trash2, UserPlus, ChevronRight, AlertCircle, Check } from 'lucide-react' import { Category, Product, CategorySelection } from '@/lib/types' +import { + Dialog, + DialogContent, + DialogDescription, + DialogFooter, + DialogHeader, + DialogTitle, +} from '@/components/ui/dialog' interface SummarySidebarProps { visibleCategories: Category[] @@ -72,6 +80,8 @@ export function SummarySidebar({ nextStep, prevStep, }: SummarySidebarProps) { + const [isOpen, setIsOpen] = React.useState(false) + return (