Change isMobile breakpoint value to 900

This commit is contained in:
e26chiu 2022-11-09 20:42:29 -05:00
parent 5fb9e6961f
commit 6b5108432c
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
import { useWindowDimensions } from "./getWindowDimensions";
export const useIsMobile = () => useWindowDimensions().width <= 768;
export const useIsMobile = () => useWindowDimensions().width <= 900;