diff --git a/frontend/src/component/playground/Playground/PlaygroundResultsTable/ContextBanner/ContextBanner.tsx b/frontend/src/component/playground/Playground/PlaygroundResultsTable/ContextBanner/ContextBanner.tsx index 03b2ecba83..7880929d98 100644 --- a/frontend/src/component/playground/Playground/PlaygroundResultsTable/ContextBanner/ContextBanner.tsx +++ b/frontend/src/component/playground/Playground/PlaygroundResultsTable/ContextBanner/ContextBanner.tsx @@ -6,7 +6,7 @@ interface IContextBannerProps { context: SdkContextSchema; } -const StyledContextFieldList = styled('ul')(({theme}) => ({ +const StyledContextFieldList = styled('ul')(({ theme }) => ({ color: colors.black, listStyleType: 'none', paddingInlineStart: theme.spacing(16), diff --git a/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureStatusCell/FeatureStatusCell.tsx b/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureStatusCell/FeatureStatusCell.tsx index f51e998ac6..c39825a741 100644 --- a/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureStatusCell/FeatureStatusCell.tsx +++ b/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureStatusCell/FeatureStatusCell.tsx @@ -10,7 +10,7 @@ interface IFeatureStatusCellProps { enabled: boolean; } -const StyledFalseChip = styled(Chip)(({theme}) => ({ +const StyledFalseChip = styled(Chip)(({ theme }) => ({ width: 80, borderRadius: '5px', border: `1px solid ${theme.palette.error.main}`, @@ -23,7 +23,7 @@ const StyledFalseChip = styled(Chip)(({theme}) => ({ }, })); -const StyledTrueChip = styled(Chip)(({theme}) => ({ +const StyledTrueChip = styled(Chip)(({ theme }) => ({ width: 80, borderRadius: '5px', border: `1px solid ${theme.palette.success.main}`,