diff --git a/site/src/modules/notifications/NotificationsInbox/NotificationsInbox.tsx b/site/src/modules/notifications/NotificationsInbox/NotificationsInbox.tsx index 78d119a7e371f..656d87fbe31d3 100644 --- a/site/src/modules/notifications/NotificationsInbox/NotificationsInbox.tsx +++ b/site/src/modules/notifications/NotificationsInbox/NotificationsInbox.tsx @@ -156,7 +156,7 @@ export const NotificationsInbox: FC = ({ error={error} isLoadingMoreNotifications={isLoadingMoreNotifications} hasMoreNotifications={Boolean( - inboxRes && inboxRes.notifications.length === NOTIFICATIONS_LIMIT, + inboxRes && inboxRes.notifications.length % NOTIFICATIONS_LIMIT === 0, )} onRetry={refetch} onMarkAllAsRead={markAllAsReadMutation.mutate}