From 16e89d0a90cfed0438298c41786e659a5c8a4b63 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 25 Aug 2026 18:01:17 +0300 Subject: [PATCH] fix unwrapped refs --- src/components/notifications/notifications.js | 4 ++-- src/components/timeline/timeline.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/notifications/notifications.js b/src/components/notifications/notifications.js index e642fc554..2272c78af 100644 --- a/src/components/notifications/notifications.js +++ b/src/components/notifications/notifications.js @@ -121,10 +121,10 @@ const Notifications = { ) }, loading() { - return useNotificationsStore().fetcher.loading.value + return useNotificationsStore().fetcher.loading }, bottomedOut() { - return useNotificationsStore().fetcher.bottomedOut.value + return useNotificationsStore().fetcher.bottomedOut }, noHeading() { const { layoutType } = useInterfaceStore() diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js index 029693651..3c7e33060 100644 --- a/src/components/timeline/timeline.js +++ b/src/components/timeline/timeline.js @@ -239,7 +239,7 @@ const Timeline = { const bodyBRect = document.body.getBoundingClientRect() const height = Math.max(bodyBRect.height, -bodyBRect.y) if ( - !this.timeline.fetcher.loadingOlder.value && + !this.timeline.fetcher.loadingOlder && window.innerHeight + window.pageYOffset >= height - 750 ) { this.fetchOlderStatuses()