From 174b9b99412af4ecd637728138a31bf4249e92fa Mon Sep 17 00:00:00 2001 From: RaktimaNXG Date: Mon, 22 Apr 2024 17:45:48 +0530 Subject: [PATCH] fix: fix subscription issue --- apps/OpenSign/src/constant/Utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/OpenSign/src/constant/Utils.js b/apps/OpenSign/src/constant/Utils.js index 4d6b01d01..17189865a 100644 --- a/apps/OpenSign/src/constant/Utils.js +++ b/apps/OpenSign/src/constant/Utils.js @@ -43,7 +43,7 @@ export async function fetchSubscription(extUserId, contactObjId) { plan = tenatRes.data?.result?.result?.PlanCode; billingDate = tenatRes.data?.result?.result?.Next_billing_date?.iso; } - return { plan, billingDate }; + return { plan, billingDate, status }; } catch (err) { console.log("Err in fetch subscription", err); return { plan: "", billingDate: "" };