Skip to content

Commit

Permalink
fix: correct parameter types for StaticWebsocket send method
Browse files Browse the repository at this point in the history
Co-Authored-By: Myles Scolnick <myles@marimo.io>
  • Loading branch information
devin-ai-integration[bot] and mscolnick committed Jan 3, 2025
1 parent 137c938 commit 03abfb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/core/websocket/StaticWebsocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class StaticWebsocket implements IReconnectingWebSocket {
reconnect(code?: number | undefined, reason?: string | undefined): void {
// Noop
}
send(data: string | ArrayBufferLike | Blob | ArrayBufferView) {
send(data: string | ArrayBuffer | Blob | ArrayBufferView) {
// Noop
}
close() {
Expand Down

0 comments on commit 03abfb6

Please sign in to comment.