From ad2bebec0e6de835756936f5f2473c0120168f18 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 20 Dec 2022 00:11:55 +0800 Subject: [PATCH] Bump notifications limit --- src/pages/notifications.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/notifications.jsx b/src/pages/notifications.jsx index 2820e8f4..23e5d772 100644 --- a/src/pages/notifications.jsx +++ b/src/pages/notifications.jsx @@ -41,7 +41,7 @@ const contentText = { update: 'A status you interacted with has been edited.', }; -const LIMIT = 20; +const LIMIT = 30; // 30 is the maximum limit :( function Notification({ notification }) { const { id, type, status, account, _accounts } = notification;