Skip to content

Commit

Permalink
Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher committed Jun 3, 2024
1 parent c28f937 commit c8474bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/library-legacy/src/rpc-websocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ export default class RpcWebSocketClient extends RpcWebSocketCommonClient {
...options,
});
if ('socket' in rpc) {
this.underlyingSocket = rpc.socket as ReturnType<typeof WebSocketBrowserImpl>;
this.underlyingSocket = rpc.socket as ReturnType<
typeof WebSocketBrowserImpl
>;
} else {
this.underlyingSocket = rpc as NodeWebSocketType;
}
Expand Down

0 comments on commit c8474bc

Please sign in to comment.