From c2ba149563ae4f97efe9b76bb54cc522f7b4ec6d Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Wed, 25 Oct 2023 11:17:02 +0800 Subject: [PATCH] Fix undefined variable --- src/components/notification-service.jsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/notification-service.jsx b/src/components/notification-service.jsx index 29ec2a29..741e5f2e 100644 --- a/src/components/notification-service.jsx +++ b/src/components/notification-service.jsx @@ -77,11 +77,7 @@ export default memo(function NotificationService() { } } } else { - console.warn( - '🛎️ Notification not found', - notificationID, - notificationAccessToken, - ); + console.warn('🛎️ Notification not found', id); } })(); }, [id, accessToken]);