From 2a844972d95a2d1e079f733c489735c55111bf4f Mon Sep 17 00:00:00 2001 From: Zane Staggs Date: Fri, 16 Jan 2026 13:53:36 -1000 Subject: [PATCH] fix slash and @ keyboard highlights visibility --- ui/desktop/src/components/MentionPopover.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ui/desktop/src/components/MentionPopover.tsx b/ui/desktop/src/components/MentionPopover.tsx index 0309f3e75932..11c4323f1b20 100644 --- a/ui/desktop/src/components/MentionPopover.tsx +++ b/ui/desktop/src/components/MentionPopover.tsx @@ -553,10 +553,9 @@ const MentionPopover = forwardRef<
handleItemClick(index)} + data-selected={index === selectedIndex} className={`flex items-center gap-3 p-2 rounded-md cursor-pointer transition-colors ${ - index === selectedIndex - ? 'bg-bgProminent text-textProminentInverse' - : 'hover:bg-bgSubtle' + index === selectedIndex ? 'bg-sidebar-accent' : 'hover:bg-sidebar-accent/50' }`} >
@@ -564,7 +563,7 @@ const MentionPopover = forwardRef<
{item.name}
-
{item.extra}
+
{item.extra}
))}