Skip to content

Commit

Permalink
fix: small breakathon fixes (#8368)
Browse files Browse the repository at this point in the history
Typo and sx propagation
  • Loading branch information
thomasheartman authored Oct 4, 2024
1 parent 2ac9c70 commit e7deb8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/component/personalDashboard/Grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit e7deb8b

Please sign in to comment.