From ec3e66a61989d36377c948d1456d745b8ccf89c8 Mon Sep 17 00:00:00 2001 From: codytseng Date: Tue, 17 Dec 2024 09:59:08 +0800 Subject: [PATCH] fix: notification item key --- src/renderer/src/components/NotificationList/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/renderer/src/components/NotificationList/index.tsx b/src/renderer/src/components/NotificationList/index.tsx index 5f3f4c73..e6545149 100644 --- a/src/renderer/src/components/NotificationList/index.tsx +++ b/src/renderer/src/components/NotificationList/index.tsx @@ -107,9 +107,9 @@ export default function NotificationList() { } return ( -
- {notifications.map((notification, index) => ( - +
+ {notifications.map((notification) => ( + ))}
{until ?
{t('loading...')}
: t('no more notifications')}