Skip to content
Permalink
Browse files
fix(grid): gridCell now correctly uses largeDesktop when desktop is a…
…lso provided
  • Loading branch information
mlaursen committed Dec 15, 2020
1 parent 48181b3 commit fd26b8b
Showing 1 changed file with 2 additions and 2 deletions.
@@ -131,8 +131,8 @@ export const GridCell = forwardRef<HTMLDivElement, GridCellProps>(
const media =
(isPhone && phone) ||
(isTablet && tablet) ||
(isDesktop && desktop) ||
(isLargeDesktop && largeDesktop);
(isLargeDesktop && largeDesktop) ||
(isDesktop && desktop);

if (media) {
({

0 comments on commit fd26b8b

Please sign in to comment.