Skip to content

Commit

Permalink
fixup! implement route scoping solution
Browse files Browse the repository at this point in the history
add missing semicolon
  • Loading branch information
dario-piotrowicz committed Jul 31, 2024
1 parent eec1d6f commit 435c53a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ async function buildFunctionFile(
groupedImports.forEach((keys, path) => {
if (path.endsWith('.wasm')) {
// we don't need/want to apply any code transformation for wasm imports
functionImports += `import ${keys} from "${path}"`;
functionImports += `import ${keys} from "${path}";`;
return;
}

Expand Down

0 comments on commit 435c53a

Please sign in to comment.