Skip to content

Commit

Permalink
Make gapSizes required as default already supplied in getGapSizes()
Browse files Browse the repository at this point in the history
  • Loading branch information
Fweddi committed Jan 22, 2025
1 parent 393e7b1 commit a60723d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type Props = {
imagePositionOnMobile: ImagePositionType;
minWidthInPixels?: number;
containerType?: DCRContainerType;
gapSizes?: GapSizes;
gapSizes: GapSizes;
isBetaContainer: boolean;
};

Expand Down Expand Up @@ -164,7 +164,7 @@ export const CardLayout = ({
minWidthInPixels,
imageType,
containerType,
gapSizes = { row: 'small', column: 'small' },
gapSizes,
isBetaContainer,
}: Props) => {
return (
Expand Down

0 comments on commit a60723d

Please sign in to comment.