Skip to content

Commit

Permalink
Update server.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke authored Jul 22, 2024
1 parent 349b828 commit 5de1f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion showcases/angular-ssr-showcase/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function app(): express.Express {
providers: [{ provide: APP_BASE_HREF, useValue: baseUrl }]
})
.then((html) => res.send(html))
.catch((error) => {
.catch((error: unknown) => {
next(error);
});
});
Expand Down

0 comments on commit 5de1f8c

Please sign in to comment.