Skip to content

Commit

Permalink
fix: useMediaQuery on larger screens
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed Aug 28, 2023
1 parent 1f996d6 commit 7dc0fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/summit-2023/src/pages/Home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useMediaQuery, useTheme } from '@mui/material';
const Home = () => {
const theme = useTheme();
const isMobile = useMediaQuery(theme.breakpoints.down('sm'));
const isLarger = useMediaQuery(theme.breakpoints.up('xl'));
const isLarger = useMediaQuery('(min-width:1921px)');

return (
<>
Expand Down

0 comments on commit 7dc0fdb

Please sign in to comment.