Skip to content

Commit

Permalink
Merge pull request #434 from communitybridge/fix-parse-issue
Browse files Browse the repository at this point in the history
Solved parsing issue
  • Loading branch information
amolsontakke3576 authored Dec 11, 2024
2 parents ce40c61 + 0b3fd52 commit 24a3d92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class IndividualDashboardComponent implements OnInit {
}

postIndividualRequestSignature() {
const redirectUrl = this.storageService.getItem(AppSettings.REDIRECT);
const redirectUrl = JSON.parse(this.storageService.getItem(AppSettings.REDIRECT));
const data = {
project_id: this.projectId,
user_id: this.userId,
Expand Down

0 comments on commit 24a3d92

Please sign in to comment.