From a42cc5bf03a971ebb21fc516363a11b362053793 Mon Sep 17 00:00:00 2001 From: Anso Date: Mon, 20 Apr 2026 18:23:38 -0400 Subject: [PATCH] fix(ui): raise toast z-index above dialog overlays (#715) --- frontend/src/components/ui/toast.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/ui/toast.tsx b/frontend/src/components/ui/toast.tsx index c37978a1..622fcbc7 100644 --- a/frontend/src/components/ui/toast.tsx +++ b/frontend/src/components/ui/toast.tsx @@ -204,7 +204,7 @@ export function ToastContainer() { const visible = toasts.slice(-MAX_VISIBLE); return createPortal( -
+
{visible.map((t) => (