Skip to content

Commit 5007001

Browse files
committed
fix a missed await for the project api
1 parent 14d7a27 commit 5007001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/packages/project/conat/api/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ async function handleMessage(api, subject, mesg) {
129129
await mesg.respond({ error: `Unknown service ${service}` });
130130
}
131131
} else {
132-
handleApiRequest(request, mesg);
132+
await handleApiRequest(request, mesg);
133133
}
134134
}
135135

0 commit comments

Comments
 (0)