Skip to content

Commit e7753e7

Browse files
committed
declare musicxml2pv result as const
1 parent 6d5e9d6 commit e7753e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

annotation-tool/src/App/Utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export const musicxml2pv = (mkLeft) => (mkRight) => (unfold) => (musicxml) => as
165165
const wasm = await WebAssembly.instantiateStreaming(fetch(new URL("musicxml2pv.wasm", import.meta.url)), wasi.getImportObject());
166166
// console.log(wasm);
167167

168-
result = await wasi.start(wasm, {});
168+
const result = await wasi.start(wasm, {});
169169
console.log(result);
170170
if (output == "") {
171171
return mkLeft("musicxml2pv returned empty string");

0 commit comments

Comments
 (0)