File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
libs/remix-ui/remix-ai-assistant/src/components Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ export interface GroupListMenuProps {
6
6
choice : AiContextType | AiAssistantType | any
7
7
setShowOptions : Dispatch < React . SetStateAction < boolean > >
8
8
groupList : groupListType [ ]
9
- themeTracker ?: any
10
9
}
11
10
12
11
export default function GroupListMenu ( props : GroupListMenuProps ) {
@@ -16,7 +15,7 @@ export default function GroupListMenu(props: GroupListMenuProps) {
16
15
{ props . groupList . map ( ( item , index ) => (
17
16
< button
18
17
key = { `${ item . label } -${ index } ` }
19
- className = { `btn btn-light ${ props . themeTracker ?. name === 'Dark' ? ' border border-dark' : '' } ` }
18
+ className = { `btn btn-light border border-0 ` }
20
19
data-id = { item . dataId }
21
20
onClick = { ( ) => {
22
21
props . setChoice ( item . stateValue )
Original file line number Diff line number Diff line change @@ -715,7 +715,6 @@ export const RemixUiRemixAiAssistant = React.forwardRef<
715
715
setChoice = { handleModelSelection }
716
716
setShowOptions = { setShowModelOptions }
717
717
choice = { selectedModel }
718
- themeTracker = { themeTracker }
719
718
groupList = { availableModels . map ( model => ( {
720
719
label : model ,
721
720
bodyText : `Use ${ model } model` ,
You can’t perform that action at this time.
0 commit comments