Skip to content

Commit 24a3d92

Browse files
Merge pull request #434 from communitybridge/fix-parse-issue
Solved parsing issue
2 parents ce40c61 + 0b3fd52 commit 24a3d92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/individual-contributor/container/individual-dashboard/individual-dashboard.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export class IndividualDashboardComponent implements OnInit {
6464
}
6565

6666
postIndividualRequestSignature() {
67-
const redirectUrl = this.storageService.getItem(AppSettings.REDIRECT);
67+
const redirectUrl = JSON.parse(this.storageService.getItem(AppSettings.REDIRECT));
6868
const data = {
6969
project_id: this.projectId,
7070
user_id: this.userId,

0 commit comments

Comments
 (0)