From 744f893cd96cc9c42e3af5bb08f3a3428f056a0c Mon Sep 17 00:00:00 2001 From: Anubhav <35621759+anubh-v@users.noreply.github.com> Date: Tue, 2 Mar 2021 00:55:28 +0800 Subject: [PATCH] Fix origin in production AppConfig (#617) The authentication process on the production app gets blocked due to an incorrect origin in the AppConfig. Let's fix the AppConfig origin so authentication can complete successfully. --- src/environments/environment.prod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index 1b10bdaf1..49d7f2d34 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -6,7 +6,7 @@ export const AppConfig = { clientId: '5e1ed08cff7f0de1d68d', githubUrl: 'https://github.com', accessTokenUrl: 'https://catcher-proxy.herokuapp.com/authenticate', - origin: 'https://CATcher-org.github.io', + origin: 'https://catcher-org.github.io', profiles: [ { profileName: 'CS2103/T Alpha Test',