쿼리 에러 수정

This commit is contained in:
kjs
2025-11-06 18:10:21 +09:00
parent 5d9233203c
commit 0e4cf7b641
7 changed files with 14 additions and 11 deletions

View File

@@ -4,11 +4,11 @@ import React from "react";
import {
Dialog,
DialogContent,
DialogHeader,
} from "@/components/ui/resizable-dialog";
DialogTitle,
DialogDescription,
DialogFooter,
} from "@/components/ui/dialog";
import { Button } from "@/components/ui/button";
import { CheckCircle, XCircle, AlertTriangle, Info } from "lucide-react";
@@ -76,16 +76,16 @@ export function AlertModal({
<DialogHeader>
<div className="mb-2 flex items-center gap-3">
<IconComponent className={`h-6 w-6 ${config.iconColor}`} />
<ResizableDialogTitle className={config.titleColor}>{title}</ResizableDialogTitle>
<DialogTitle className={config.titleColor}>{title}</DialogTitle>
</div>
<ResizableDialogDescription className="text-left">{message}</ResizableDialogDescription>
<DialogDescription className="text-left">{message}</DialogDescription>
</DialogHeader>
<ResizableDialogFooter>
<DialogFooter>
<Button onClick={handleConfirm} className="w-full">
{confirmText}
</Button>
</ResizableDialogFooter>
</DialogFooter>
</DialogContent>
</Dialog>
);