Skip to content

Commit bbc4b16

Browse files
committed
Add missing return
1 parent 977f023 commit bbc4b16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/routes/api.v1.deployments.$deploymentId.start.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export async function action({ request, params }: ActionFunctionArgs) {
4343

4444
const deploymentService = new DeploymentService();
4545

46-
await deploymentService
46+
return await deploymentService
4747
.startDeployment(authenticatedEnv, deploymentId, {
4848
contentHash: body.data.contentHash,
4949
git: body.data.gitMeta,

0 commit comments

Comments
 (0)