Studio: raise ingestion toast stack above the settings sheet

The toast stack and the chat settings sheet were both z-50, so an open
side panel (rendered later in the DOM) covered the indexing toast. Bump
the stack to z-[9999] — comfortably above the sheet's z-50 — so the
ingestion toast stays visible like the Sonner reranker toast does.
This commit is contained in:
Roland Tannous 2026-05-28 11:41:39 +04:00
commit 7e3e69db3f

View file

@ -55,7 +55,7 @@ export function IngestionToastStack() {
if (visible.length === 0) return null;
return (
<div className="pointer-events-none fixed right-4 top-4 z-50 flex w-72 flex-col gap-2">
<div className="pointer-events-none fixed right-4 top-4 z-[9999] flex w-72 flex-col gap-2">
<AnimatePresence initial={false}>
{visible.map(([jobId, event]) => {
const isTerminal =