From 27aceb34a9876fce545e7c7ff7fa4542709c2da3 Mon Sep 17 00:00:00 2001 From: mgtennant <100305096+mgtennant@users.noreply.github.com> Date: Mon, 7 Oct 2024 15:51:49 -0700 Subject: [PATCH] ticdi-118 - tenure object was stringified? --- backend/src/report/report.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/report/report.service.ts b/backend/src/report/report.service.ts index fc7a8ce6..ff4e3e2a 100644 --- a/backend/src/report/report.service.ts +++ b/backend/src/report/report.service.ts @@ -415,7 +415,7 @@ export class ReportService { mailing_country_code: tenantAddr ? tenantAddr.countryCd : '', mailing_country: tenantAddr ? tenantAddr.country : '', location_description: rawData.locLand, - tenure: tenure ? JSON.stringify(tenure) : '', + tenure: tenure ? tenure : '', }; data = { DTID: mappedData.dtid,