1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-10 01:16:39 +02:00

fix: small breakathon fixes (#8368)

Typo and sx propagation
This commit is contained in:
Thomas Heartman 2024-10-04 15:43:11 +02:00 committed by GitHub
parent 2ac9c701c3
commit e7deb8b49b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -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 (