File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
invokeai/frontend/web/src/features/parameters/components Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -413,12 +413,6 @@ const optionNameSx: SystemStyleObject = {
413
413
} ,
414
414
} ;
415
415
416
- const optionDescriptionSx : SystemStyleObject = {
417
- '&[data-is-compact="true"]' : {
418
- color : 'base.800' ,
419
- } ,
420
- } ;
421
-
422
416
const PickerOptionComponent = typedMemo (
423
417
< T extends AnyModelConfig > ( { option, ...rest } : { option : WithStarred < T > } & BoxProps ) => {
424
418
const { $compactView } = usePickerContext < WithStarred < T > > ( ) ;
@@ -460,7 +454,7 @@ const PickerOptionComponent = typedMemo(
460
454
) }
461
455
</ Flex >
462
456
{ option . description && ! compactView && (
463
- < Text sx = { optionDescriptionSx } data-is-compact = { compactView } >
457
+ < Text className = "extra-info" color = "base.200" >
464
458
{ option . description }
465
459
</ Text >
466
460
) }
You can’t perform that action at this time.
0 commit comments