From 142e8cbf2f88247e6d60a35e79e68077c28673c4 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 30 Jun 2026 03:22:20 +0300 Subject: [PATCH] fix crash in mobile nav --- src/components/mobile_nav/mobile_nav.js | 3 --- src/components/mobile_nav/mobile_nav.vue | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/mobile_nav/mobile_nav.js b/src/components/mobile_nav/mobile_nav.js index 41cc4f457..b47376d53 100644 --- a/src/components/mobile_nav/mobile_nav.js +++ b/src/components/mobile_nav/mobile_nav.js @@ -152,9 +152,6 @@ const MobileNav = { }, onScroll({ target: { scrollTop, clientHeight, scrollHeight } }) { this.notificationsAtTop = scrollTop > 0 - if (scrollTop + clientHeight >= scrollHeight) { - this.$refs.notifications.fetchOlderNotifications() - } }, }, watch: { diff --git a/src/components/mobile_nav/mobile_nav.vue b/src/components/mobile_nav/mobile_nav.vue index 09009782a..743b7deb0 100644 --- a/src/components/mobile_nav/mobile_nav.vue +++ b/src/components/mobile_nav/mobile_nav.vue @@ -94,6 +94,7 @@ /> +