Skip to content

Commit

Permalink
Fix origin in production AppConfig (#617)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
anubh-v authored Mar 1, 2021
1 parent 91a350f commit 744f893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
<Profile>{
profileName: 'CS2103/T Alpha Test',
Expand Down

0 comments on commit 744f893

Please sign in to comment.