Skip to content

Commit a253090

Browse files
authored
🤖 fix: Command suggestions hidden under alerts (#718)
Increased the z-index of CommandSuggestions from 100 to 1010 to ensure it appears above ChatInputToast (z-index 1000). _Generated with mux_
1 parent a21aa5e commit a253090

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browser/components/CommandSuggestions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export const CommandSuggestions: React.FC<CommandSuggestionsProps> = ({
135135
}
136136
data-command-suggestions
137137
className={cn(
138-
"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)]",
138+
"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)]",
139139
// Use absolute positioning relative to parent when not in portal mode
140140
!anchorRef && "absolute right-0 bottom-full left-0 mb-2"
141141
)}

0 commit comments

Comments
 (0)