Skip to content

Commit

Permalink
fix redirect uri
Browse files Browse the repository at this point in the history
  • Loading branch information
auumgn committed Aug 6, 2024
1 parent 49d3227 commit a8f3e3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/app/landing-page/landing-page.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { KEYUTIL, KJUR, RSAKey } from 'jsrsasign'
import { LandingPageService } from './landing-page.service'
import { MemberService } from '../member/service/member.service'
import { IMember } from '../member/model/member.model'
import { ORCID_BASE_URL } from '../app.constants'
import { BASE_URL, ORCID_BASE_URL } from '../app.constants'
import { WindowLocationService } from '../shared/service/window-location.service'
import { OrcidRecord } from '../shared/model/orcid-record.model'

Expand All @@ -16,7 +16,7 @@ import { OrcidRecord } from '../shared/model/orcid-record.model'
export class LandingPageComponent implements OnInit {
issuer = ORCID_BASE_URL
oauthBaseUrl = ORCID_BASE_URL + '/oauth/authorize'
redirectUri = '/landing-page'
redirectUri = BASE_URL + '/landing-page'

loading = true
showConnectionExists = false
Expand Down

0 comments on commit a8f3e3d

Please sign in to comment.