Skip to content

Commit e3e3dab

Browse files
committed
Fixed missing } in the express package
1 parent b884a0a commit e3e3dab

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/express/src/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@ export function createMiddleware(client: TriggerClient, path: string = "/api/tri
7979

8080
res.status(response.status).json(response.body);
8181
} catch (error) {
82-
next(error)
83-
};
82+
next(error);
83+
}
84+
};
8485
}
8586

8687
function convertToStandardRequest(req: express.Request): StandardRequest {

0 commit comments

Comments
 (0)