Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhabib committed Dec 16, 2024
1 parent fff5c55 commit 3cc5960
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,13 @@ export const Tiles = ({
data,
...restProps
}: TilesProps) => {
const normalizedResponsiveColumns = normalizeResponsiveValue(columns);
const {
mobile: mobileColumns = '1',
tablet: tabletColumns = mobileColumns,
desktop: desktopColumns = tabletColumns,
wide: wideColumns = desktopColumns,
} = normalizeResponsiveValue(columns);
} = normalizedResponsiveColumns;

return (
<Box
Expand Down

0 comments on commit 3cc5960

Please sign in to comment.