1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-11 00:08:30 +01:00

Fix PR commments

This commit is contained in:
andreas-unleash 2022-07-13 09:47:22 +03:00
parent e8a77d4928
commit 8f4f1f6f5f
2 changed files with 3 additions and 3 deletions

View File

@ -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),

View File

@ -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}`,