Skip to content

Commit 07591df

Browse files
Fix code formatting in WebSocket client
Apply Prettier formatting to match project standards. Fixes failing CI formatting check in GitHub Actions. Co-authored-by: openhands <openhands@all-hands.dev>
1 parent 6890721 commit 07591df

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/events/websocket-client.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ if (typeof window !== 'undefined' && window.WebSocket) {
1717
const ws = require('ws');
1818
WebSocketImpl = ws;
1919
} catch (e) {
20-
throw new Error('WebSocket implementation not available. Install ws package for Node.js environments.');
20+
throw new Error(
21+
'WebSocket implementation not available. Install ws package for Node.js environments.'
22+
);
2123
}
2224
}
2325

0 commit comments

Comments
 (0)