From 7fa7d1e701f5441c89b06eff8598a75f20cbec1a Mon Sep 17 00:00:00 2001 From: WilliamTakeshi Date: Tue, 24 Feb 2026 18:17:42 +0100 Subject: [PATCH] chore: filter false --- dotbot/frontend/src/RestApp.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotbot/frontend/src/RestApp.js b/dotbot/frontend/src/RestApp.js index 74007635..cc75d905 100644 --- a/dotbot/frontend/src/RestApp.js +++ b/dotbot/frontend/src/RestApp.js @@ -44,7 +44,7 @@ const RestApp = () => { log.info(`Publishing message: ${message} to topic: ${topic}`); }, []); -const onWsOpen = () => { + const onWsOpen = () => { log.info('websocket opened'); fetchDotBots(); }; @@ -104,6 +104,7 @@ const onWsOpen = () => { onClose: () => log.warn("websocket closed"), onMessage: (event) => onWsMessage(event), shouldReconnect: (event) => true, + filter: () => false, }); useEffect(() => {