From dbe8b405601149123417be6bbdbf58f46a2d1593 Mon Sep 17 00:00:00 2001 From: Amol Sontakke Date: Thu, 26 Oct 2023 21:58:47 +0530 Subject: [PATCH] upgrade lib and and change API base URL Signed-off-by: Amol Sontakke --- src/app/core/services/cla-contributor.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/services/cla-contributor.service.ts b/src/app/core/services/cla-contributor.service.ts index d2f38dc..6e63b72 100644 --- a/src/app/core/services/cla-contributor.service.ts +++ b/src/app/core/services/cla-contributor.service.ts @@ -114,7 +114,7 @@ export class ClaContributorService { } postIndividualSignatureRequest(data: any): Observable { - const url = this.getV2Endpoint('/v4/request-individual-signature'); + const url = this.getV4Endpoint('/v4/request-individual-signature'); return this.httpClient.post(url, data); }