From a841fd62067825249415300128daa87dc0861e9e Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Mon, 19 Apr 2021 13:18:47 -0400 Subject: [PATCH] fix typo --- ui/redux/actions/websocket.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/redux/actions/websocket.js b/ui/redux/actions/websocket.js index b31149763..77392d34f 100644 --- a/ui/redux/actions/websocket.js +++ b/ui/redux/actions/websocket.js @@ -72,7 +72,7 @@ export const doNotificationSocketConnect = (enableNotifications) => (dispatch) = doSocketConnect(url, (data) => { switch (data.type) { - case 'pending_notifications': + case 'pending_notification': if (enableNotifications) { dispatch(doNotificationList()); }