chore: Remove duplicate "when" in useMessageParser onActionOpen commentOpen comment

This commit is contained in:
Stevan Kapicic 2025-03-07 12:05:27 +01:00
parent eda10b1212
commit 8d99164c8c

View File

@ -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);
}