Skip to content

Commit

Permalink
use void await in app
Browse files Browse the repository at this point in the history
Signed-off-by: david <[email protected]>
  • Loading branch information
daywiss committed Aug 2, 2024
1 parent 381af2d commit a471bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/node/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ async function run() {
assert(APP, 'Specify the application to start with "APP=appname pnpm start"');
switch (APP) {
case "template":
await Template.Main(process.env);
void await Template.Main(process.env);
return "Example template app running";
default:
throw new Error(`Unable to start, unknown app: ${APP}`);
Expand Down

0 comments on commit a471bea

Please sign in to comment.