From dc1ec9a4c8019408498401e46514d1513612188c Mon Sep 17 00:00:00 2001 From: clkim Date: Thu, 22 Jan 2026 10:03:39 +0900 Subject: [PATCH] =?UTF-8?q?fix.=20=EC=9D=B4=EB=B2=A4=ED=8A=B8=20=EB=84=A4?= =?UTF-8?q?=EB=B9=84=EA=B2=8C=EC=9D=B4=EC=85=98=20=EB=AA=A8=EB=B0=94?= =?UTF-8?q?=EC=9D=BC=EC=97=90=EC=84=9C=20=EC=A0=91=EA=B7=BC=20=EC=8B=9C=20?= =?UTF-8?q?'=EB=8B=AB=ED=9E=98'=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layers/components/layouts/EventNavigation.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/layers/components/layouts/EventNavigation.vue b/layers/components/layouts/EventNavigation.vue index f023273..f286f0f 100644 --- a/layers/components/layouts/EventNavigation.vue +++ b/layers/components/layouts/EventNavigation.vue @@ -7,8 +7,8 @@ import type { const { locale } = useI18n() const { sendLog } = useAnalytics() - const gameDomain = getGameDomain() +const breakpoints = useResponsiveBreakpoints() const analytics = { action_type: 'click', @@ -54,6 +54,9 @@ const toggleEventNavigation = () => { onMounted(async () => { eventNavigationList.value = await getEventNavigation() + if (breakpoints.value.isMobile) { + isEventNavigationOpen.value = false + } })