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