From eda10fb6fb9f2823b70f5af2babf7793fbdc4429 Mon Sep 17 00:00:00 2001 From: nusa Date: Sat, 4 Oct 2025 11:48:10 +0000 Subject: [PATCH] Remove comment --- src/lib/components/Notifications.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/Notifications.svelte b/src/lib/components/Notifications.svelte index f7ca57a..026a3d3 100644 --- a/src/lib/components/Notifications.svelte +++ b/src/lib/components/Notifications.svelte @@ -70,7 +70,7 @@ let allFromMeNotifications = $state([]); // All fetched "from-me" notifications let allPublicMessages = $state([]); // All fetched public messages let currentPage = $state(1); - let itemsPerPage = 10; // Show 20 items per page + let itemsPerPage = 10; let hasFetchedToMe = $state(false); // Track if we've already fetched "to-me" data let hasFetchedFromMe = $state(false); // Track if we've already fetched "from-me" data let hasFetchedPublic = $state(false); // Track if we've already fetched public messages