Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed May 2, 2024
1 parent 491666d commit 34a7382
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rerun_js/web-viewer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export class WebViewer {
this.#handle.open_channel(id, channel_name);
const on_send = (/** @type {Uint8Array} */ data) => {
if (!this.#handle) throw new Error("...");
this.#handle.send_rrd_to_channel(id, data)
this.#handle.send_rrd_to_channel(id, data);
};
const on_close = () => {
if (!this.#handle) throw new Error("...");
Expand All @@ -171,7 +171,7 @@ export class LogChannel {
* @param {(data: Uint8Array) => void} on_send
* @param {() => void} on_close
* @param {() => 'ready' | 'starting' | 'stopped'} get_state
*/
*/
constructor(on_send, on_close, get_state) {
this.#on_send = on_send;
this.#on_close = on_close;
Expand Down

0 comments on commit 34a7382

Please sign in to comment.