From db7a76defc73cf65f55b3f7d448943559ea3a2f5 Mon Sep 17 00:00:00 2001 From: Chandler Copeland Date: Mon, 6 Apr 2026 13:55:14 -0600 Subject: [PATCH] fix(portal): raise ConfirmDialog z-index to 1000 to clear FieldPlacer overlays and nav stacking context --- .../app/portal/_components/ConfirmDialog.tsx | 23 +++++++------------ 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/teressa-copeland-homes/src/app/portal/_components/ConfirmDialog.tsx b/teressa-copeland-homes/src/app/portal/_components/ConfirmDialog.tsx index 56b18e2..e914e9d 100644 --- a/teressa-copeland-homes/src/app/portal/_components/ConfirmDialog.tsx +++ b/teressa-copeland-homes/src/app/portal/_components/ConfirmDialog.tsx @@ -9,33 +9,26 @@ type Props = { confirmLabel?: string; }; -export function ConfirmDialog({ - isOpen, - title, - message, - onConfirm, - onCancel, - confirmLabel = "Delete", -}: Props) { +export function ConfirmDialog({ isOpen, title, message, onConfirm, onCancel, confirmLabel = "Delete" }: Props) { if (!isOpen) return null; return ( -
-
-

{title}

-

{message}

-
+
+
+

{title}

+

{message}

+