From 294ab2bf00941b76e0cad9d6222ff2df7e3de94a Mon Sep 17 00:00:00 2001
From: Lim Chee Aun <cheeaun@gmail.com>
Date: Mon, 15 Apr 2024 17:07:20 +0800
Subject: [PATCH] Just put in this commented test notification

Good for reference in the future
---
 src/pages/notifications.jsx | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/src/pages/notifications.jsx b/src/pages/notifications.jsx
index 702dbe0f..a8434c93 100644
--- a/src/pages/notifications.jsx
+++ b/src/pages/notifications.jsx
@@ -89,6 +89,21 @@ function Notifications({ columnMode }) {
         });
       });
 
+      // TEST: Slot in a fake notification to test 'severed_relationships'
+      // notifications.unshift({
+      //   id: '123123',
+      //   type: 'severed_relationships',
+      //   createdAt: '2024-03-22T19:20:08.316Z',
+      //   event: {
+      //     type: 'account_suspension',
+      //     targetName: 'mastodon.dev',
+      //     followersCount: 0,
+      //     followingCount: 0,
+      //   },
+      // });
+
+      // console.log({ notifications });
+
       const groupedNotifications = groupNotifications(notifications);
 
       if (firstLoad) {