Skip to content

Commit 29d7846

Browse files
authored
Update suggestion button variant to make it work in all themes (RooCodeInc#1932)
1 parent f07c7e6 commit 29d7846

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

webview-ui/src/components/chat/FollowUpSuggest.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const FollowUpSuggest = ({ suggestions = [], onSuggestionClick, ts = 1 }: Follow
2828
{suggestions.map((suggestion) => (
2929
<div key={`${suggestion}-${ts}`} className="w-full">
3030
<Button
31-
variant="outline"
31+
variant="secondary"
3232
className="w-full text-left whitespace-normal break-words h-auto min-h-[28px] py-2 justify-start"
3333
onClick={() => handleSuggestionClick(suggestion)}
3434
aria-label={suggestion}>

0 commit comments

Comments
 (0)