diff --git a/src/components/shell/utils/socket.ts b/src/components/shell/utils/socket.ts index 6cb18d626..b220e9c41 100644 --- a/src/components/shell/utils/socket.ts +++ b/src/components/shell/utils/socket.ts @@ -8,13 +8,7 @@ export function getShellWebSocketUrl(): string | null { return `${protocol}//${window.location.host}/shell`; } - const token = localStorage.getItem('auth-token'); - if (!token) { - console.error('No authentication token found for Shell WebSocket connection'); - return null; - } - - return `${protocol}//${window.location.host}/shell?token=${encodeURIComponent(token)}`; + return `${protocol}//${window.location.host}/shell`; } export function parseShellMessage(payload: string): ShellIncomingMessage | null {