From 954ee8a28000f4a969701293f9f3b2e0bcd1b371 Mon Sep 17 00:00:00 2001 From: Saeid Zareie Date: Mon, 4 Mar 2024 02:44:27 +0330 Subject: [PATCH] fix: resolving inconsistency between new-york and default --- apps/www/src/lib/registry/default/example/DrawerDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/src/lib/registry/default/example/DrawerDialog.vue b/apps/www/src/lib/registry/default/example/DrawerDialog.vue index c7a8b08a..d9c34a15 100644 --- a/apps/www/src/lib/registry/default/example/DrawerDialog.vue +++ b/apps/www/src/lib/registry/default/example/DrawerDialog.vue @@ -23,9 +23,9 @@ import { import { Label } from '@/lib/registry/default/ui/label' import { Input } from '@/lib/registry/default/ui/input' -const isDesktop = useMediaQuery('(min-width: 768px)') // Reuse `form` section const [UseTemplate, GridForm] = createReusableTemplate() +const isDesktop = useMediaQuery('(min-width: 768px)') const isOpen = ref(false)