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 + } })