fix(ui): raise toast z-index above dialog overlays (#715)

This commit is contained in:
Anso
2026-04-20 18:23:38 -04:00
committed by GitHub
parent 0a0198013d
commit a42cc5bf03
+1 -1
View File
@@ -204,7 +204,7 @@ export function ToastContainer() {
const visible = toasts.slice(-MAX_VISIBLE);
return createPortal(
<div className="pointer-events-none fixed bottom-4 right-4 z-50 flex w-full max-w-sm flex-col gap-2 p-4">
<div className="pointer-events-none fixed bottom-4 right-4 z-[200] flex w-full max-w-sm flex-col gap-2 p-4">
<AnimatePresence mode="popLayout">
{visible.map((t) => (
<ToastItem key={t.id} {...t} />