Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
quentingrchr committed Oct 4, 2024
1 parent ce0d9e2 commit c7d9d93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/teams/[teamId]/bookmark/[bookmarkId]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ router.use(checkTeamAppRouter).delete(async (req, event, next) => {
});

export async function DELETE(request: NextRequest, ctx: TeamsRequestContext) {
return router.run(request, ctx);
return router.run(request, ctx) as Promise<Response>;
}

0 comments on commit c7d9d93

Please sign in to comment.