diff --git a/web/components/Notifications/List.vue b/web/components/Notifications/List.vue index 6f46ac34a..8a839b02d 100644 --- a/web/components/Notifications/List.vue +++ b/web/components/Notifications/List.vue @@ -56,7 +56,7 @@ async function onLoadMore() { }, }); const incomingCount = incoming?.data.notifications.list.length ?? 0; - if (incomingCount === 0) { + if (incomingCount === 0 || incomingCount < props.pageSize) { canLoadMore.value = false; } }