From c0234dd26e674d2dc987611d4f929a15c7477015 Mon Sep 17 00:00:00 2001
From: Lim Chee Aun <cheeaun@gmail.com>
Date: Fri, 30 Dec 2022 23:08:55 +0800
Subject: [PATCH] Add focus for notification block too

---
 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 d538c632..e5a9c59b 100644
--- a/src/pages/notifications.jsx
+++ b/src/pages/notifications.jsx
@@ -195,7 +195,7 @@ function NotificationsList({ notifications, emptyCopy }) {
       {cleanNotifications.map((notification, i) => {
         const { id, type } = notification;
         return (
-          <li key={id} class={`notification ${type}`}>
+          <li key={id} class={`notification ${type}`} tabIndex="0">
             <Notification notification={notification} />
           </li>
         );