diff --git a/src/terminal.tsx b/src/terminal.tsx index 9f9f92e..23f5644 100644 --- a/src/terminal.tsx +++ b/src/terminal.tsx @@ -47,8 +47,12 @@ function TerminalComponent (p: {websocket: string|null}) { const socket = new WebSocket(websocket); + socket.onerror = (ev)=>{ + console.log(ev) + } + socket.addEventListener('open', () => { - // socket.send(JSON.stringify({CommandType: 'resize', Arguments: [terminal.current?.rows, terminal.current?.cols]})); + socket.send(JSON.stringify({CommandType: 'resize', Arguments: [terminal.current?.rows, terminal.current?.cols]})); }); terminal.current.onResize(({cols, rows})=>{