diff --git a/server/controllers/authController.ts b/server/controllers/authController.ts index 86ada24a..052e5929 100644 --- a/server/controllers/authController.ts +++ b/server/controllers/authController.ts @@ -14,7 +14,6 @@ const getAuthRedirectUrl = async (request: Request, response: Response) => { const authRedirectUrl = authService.getAuthorizationUrl( 'openid profile email' ); - response.status(200).send(authRedirectUrl); };