Skip to content

Commit

Permalink
fix(user): hide menu on tablet as well
Browse files Browse the repository at this point in the history
  • Loading branch information
royschut committed Aug 4, 2021
1 parent af5be5e commit 2c6f7e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/User/User.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const User = (): JSX.Element => {
const { t } = useTranslation('user');
const breakpoint = useBreakpoint();
const [clearFavoritesOpen, setClearFavoritesOpen] = useState(false);
const isLargeScreen = breakpoint >= Breakpoint.md;
const isLargeScreen = breakpoint > Breakpoint.md;
const { user: customer, subscription, loading } = AccountStore.useState((state) => state);

const updateBlurImage = useBlurImageUpdater();
Expand Down

0 comments on commit 2c6f7e8

Please sign in to comment.