Compare commits

...

1 Commits

Author SHA1 Message Date
Charles Bochet b5b9efe451 chore: remove redundant undefined from backgroundColor type
Made-with: Cursor
2026-03-24 01:13:19 +01:00
@@ -29,7 +29,7 @@ const StyledLayout = styled.div<{
type ComponentStorybookLayoutProps = {
width?: number;
backgroundColor?: string | undefined;
backgroundColor?: string;
height?: number;
children: JSX.Element;
};