Skip to content

Commit

Permalink
Remove unnecessary await
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Dec 12, 2024
1 parent 1aaca2c commit ea53e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rerun_js/web-viewer/bundle.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function compressed_data_url_to_buffer(dataUrl) {
let ds = new DecompressionStream("gzip");
let decompressedStream = blob.stream().pipeThrough(ds);

return await new Response(decompressedStream).arrayBuffer();
return new Response(decompressedStream).arrayBuffer();
}

const inlined_js = js.replace("export default function", "return function");
Expand Down

0 comments on commit ea53e98

Please sign in to comment.