From 8d99164c8ca51e60b33276160cc1797d033e9686 Mon Sep 17 00:00:00 2001 From: Stevan Kapicic Date: Fri, 7 Mar 2025 12:05:27 +0100 Subject: [PATCH] chore: Remove duplicate "when" in useMessageParser onActionOpen commentOpen comment --- app/lib/hooks/useMessageParser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/hooks/useMessageParser.ts b/app/lib/hooks/useMessageParser.ts index a70fb82f42..ffb003539a 100644 --- a/app/lib/hooks/useMessageParser.ts +++ b/app/lib/hooks/useMessageParser.ts @@ -22,7 +22,7 @@ const messageParser = new StreamingMessageParser({ onActionOpen: (data) => { logger.trace('onActionOpen', data.action); - // we only add shell actions when when the close tag got parsed because only then we have the content + // we only add shell actions when the close tag got parsed because only then we have the content if (data.action.type !== 'shell') { workbenchStore.addAction(data); }