From 3737550f7f8b429b8849abe47039a20809b38bc2 Mon Sep 17 00:00:00 2001 From: Andre H Date: Wed, 6 Mar 2024 14:14:49 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore:=20useMediaQuery=20change?= =?UTF-8?q?=20md=20to=20>720px?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/pages/org-slug/projects/Id.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/pages/org-slug/projects/Id.tsx b/packages/frontend/src/pages/org-slug/projects/Id.tsx index cf333ba3..60c2f073 100644 --- a/packages/frontend/src/pages/org-slug/projects/Id.tsx +++ b/packages/frontend/src/pages/org-slug/projects/Id.tsx @@ -24,7 +24,7 @@ const Id = () => { const client = useGQLClient(); const location = useLocation(); - const isDesktopView = useMediaQuery('(min-width: 768px)'); // md: + const isDesktopView = useMediaQuery('(min-width: 720px)'); // md: const buttonSize = isDesktopView ? {} : { size: 'sm' as const }; const [project, setProject] = useState(null);