1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00

refactor: remove unused borders prop from GridLayoutWrapperProps

This commit is contained in:
Tymoteusz Czech 2025-09-05 12:05:34 +02:00
parent e156f1e486
commit eb82afc5a4
No known key found for this signature in database
GPG Key ID: 133555230D88D75F
2 changed files with 1 additions and 2 deletions

View File

@ -152,7 +152,7 @@ export const FeatureImpactMetrics: FC = () => {
{impactMetrics.configs.length > 0 && ( {impactMetrics.configs.length > 0 && (
<Box sx={(theme) => ({ marginTop: theme.spacing(3) })}> <Box sx={(theme) => ({ marginTop: theme.spacing(3) })}>
<GridLayoutWrapper items={gridItems} borders /> <GridLayoutWrapper items={gridItems} />
</Box> </Box>
)} )}

View File

@ -50,7 +50,6 @@ type GridLayoutWrapperProps = {
onLayoutChange?: (layout: LayoutItem[]) => void; onLayoutChange?: (layout: LayoutItem[]) => void;
cols?: { lg: number; md: number; sm: number; xs: number; xxs: number }; cols?: { lg: number; md: number; sm: number; xs: number; xxs: number };
rowHeight?: number; rowHeight?: number;
borders?: boolean;
}; };
const ItemContainer = styled('div')(({ theme }) => ({ const ItemContainer = styled('div')(({ theme }) => ({