1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-15 17:50:48 +02:00

refactor: remove unused prop

This commit is contained in:
Thomas Heartman 2024-10-11 11:20:36 +02:00
parent 3a295d7344
commit 7a7eb789ab
No known key found for this signature in database
GPG Key ID: BD1F880DAED1EE78

View File

@ -58,7 +58,7 @@ export const FlagGrid = styled(ContentGrid)(
);
export const GridItem = styled('div', {
shouldForwardProp: (prop) => !['gridArea', 'sx'].includes(prop.toString()),
shouldForwardProp: (prop) => !['gridArea'].includes(prop.toString()),
})<{ gridArea: string }>(({ theme, gridArea }) => ({
padding: theme.spacing(2, 4),
maxHeight: '100%',