From b9a6175e5d9b93d3e49a2dd471e3a02e90d86e7f Mon Sep 17 00:00:00 2001 From: Michael Suchacz <203725896+ibetitsmike@users.noreply.github.com> Date: Mon, 24 Nov 2025 13:48:29 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20fix:=20increase=20z-index=20of?= =?UTF-8?q?=20CommandSuggestions=20to=20appear=20above=20toasts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/browser/components/CommandSuggestions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/components/CommandSuggestions.tsx b/src/browser/components/CommandSuggestions.tsx index 31795659ae..7aa47b66fc 100644 --- a/src/browser/components/CommandSuggestions.tsx +++ b/src/browser/components/CommandSuggestions.tsx @@ -135,7 +135,7 @@ export const CommandSuggestions: React.FC = ({ } data-command-suggestions className={cn( - "bg-separator border-border-light z-[100] flex max-h-[200px] flex-col overflow-y-auto rounded border shadow-[0_-4px_12px_rgba(0,0,0,0.4)]", + "bg-separator border-border-light z-[1010] flex max-h-[200px] flex-col overflow-y-auto rounded border shadow-[0_-4px_12px_rgba(0,0,0,0.4)]", // Use absolute positioning relative to parent when not in portal mode !anchorRef && "absolute right-0 bottom-full left-0 mb-2" )}