From 0b3fd52eb75ca3a1ac9e11639c979bfa5b862a21 Mon Sep 17 00:00:00 2001 From: Amol Sontakke Date: Wed, 11 Dec 2024 17:59:13 +0530 Subject: [PATCH] Solved parsing issue Signed-off-by: Amol Sontakke --- .../individual-dashboard/individual-dashboard.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/modules/individual-contributor/container/individual-dashboard/individual-dashboard.component.ts b/src/app/modules/individual-contributor/container/individual-dashboard/individual-dashboard.component.ts index 7bdda2b..bf53903 100644 --- a/src/app/modules/individual-contributor/container/individual-dashboard/individual-dashboard.component.ts +++ b/src/app/modules/individual-contributor/container/individual-dashboard/individual-dashboard.component.ts @@ -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,