diff --git a/frontend/src/shared/components/MultiNodeConsole.js b/frontend/src/shared/components/MultiNodeConsole.js index 23ed117..4e5841d 100644 --- a/frontend/src/shared/components/MultiNodeConsole.js +++ b/frontend/src/shared/components/MultiNodeConsole.js @@ -210,7 +210,7 @@ if (msg.data.command) { if (msg.data.command.includes('__CORTEX_FIN_SH_')) break; if (msg.data.command.startsWith('!RAW:')) { - xterm.write(`\x1b[38;5;36m${msg.data.command.slice(5)}\x1b[0m\r\n`); + break; // Ignore RAW interactive keystrokes to prevent visual duplication } else { xterm.write(`\x1b[38;5;33m\x1b[1m$ ${msg.data.command}\x1b[0m\r\n`); }