diff --git a/src/components/PromptInput/PromptInputFooterSuggestions.tsx b/src/components/PromptInput/PromptInputFooterSuggestions.tsx index 2d7d9bd2..75c9d75b 100644 --- a/src/components/PromptInput/PromptInputFooterSuggestions.tsx +++ b/src/components/PromptInput/PromptInputFooterSuggestions.tsx @@ -62,6 +62,9 @@ const SuggestionItemRow = memo(function SuggestionItemRow({ if (isUnifiedSuggestion(item.id)) { const icon = getIcon(item.id) const textColor: keyof Theme | undefined = isSelected + ? 'inverseText' + : undefined + const backgroundColor: keyof Theme | undefined = isSelected ? 'suggestion' : undefined const dimColor = !isSelected @@ -112,6 +115,7 @@ const SuggestionItemRow = memo(function SuggestionItemRow({ return ( - + {paddedDisplayText} - {tagText ? {tagText} : null} - + {tagText ? ( + + {tagText} + + ) : null} + {truncatedDescription}