From 7a7eb789ab5d8cb3b2911a0cddc3e1db47335322 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Fri, 11 Oct 2024 11:20:36 +0200 Subject: [PATCH] refactor: remove unused prop --- frontend/src/component/personalDashboard/Grid.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/component/personalDashboard/Grid.tsx b/frontend/src/component/personalDashboard/Grid.tsx index 11f25ecf3d..29301e41ea 100644 --- a/frontend/src/component/personalDashboard/Grid.tsx +++ b/frontend/src/component/personalDashboard/Grid.tsx @@ -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%',