mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-10 01:16:39 +02:00
parent
2ac9c701c3
commit
e7deb8b49b
@ -60,7 +60,7 @@ export const FlagGrid = styled(ContentGrid)(
|
||||
);
|
||||
|
||||
export const GridItem = styled('div', {
|
||||
shouldForwardProp: (prop) => prop !== 'gridArea',
|
||||
shouldForwardProp: (prop) => !['gridArea', 'sx'].includes(prop.toString()),
|
||||
})<{ gridArea: string }>(({ theme, gridArea }) => ({
|
||||
padding: theme.spacing(2, 4),
|
||||
gridArea,
|
||||
|
@ -88,7 +88,7 @@ const ProjectHealthMessage: FC<{
|
||||
const improveMessage =
|
||||
'Remember to archive your stale feature flags to keep the project health growing.';
|
||||
const keepDoingMessage =
|
||||
'This indicates that you are doing a good job of arching your feature flags.';
|
||||
'This indicates that you are doing a good job of archiving your feature flags.';
|
||||
|
||||
if (trend === 'improved') {
|
||||
return (
|
||||
|
Loading…
Reference in New Issue
Block a user