Skip to content

Commit

Permalink
add semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev-Lan committed Sep 18, 2024
1 parent 2072a44 commit 14f6e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/client/src/util/decoder.worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ async function decodeBuffer(e: MessageEvent<WorkerData>): Promise<void> {
worker.addEventListener('message', (event: Event) => {
const messageEvent = event as MessageEvent;
decodeBuffer(messageEvent).catch((error: Error) => {
console.error(`Error during decompression: ${error.message}`)
console.error(`Error during decompression: ${error.message}`);
});
});

0 comments on commit 14f6e7d

Please sign in to comment.