From 996440ffdbe8e134798246220141e12c6fe31acc Mon Sep 17 00:00:00 2001 From: devinleighsmith Date: Mon, 11 Dec 2023 15:34:09 -0800 Subject: [PATCH] correct lease land legal description. --- .../leases/detail/LeasePages/details/PropertyInformation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/frontend/src/features/leases/detail/LeasePages/details/PropertyInformation.tsx b/source/frontend/src/features/leases/detail/LeasePages/details/PropertyInformation.tsx index 696b991f0f..4f96c316d4 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/details/PropertyInformation.tsx +++ b/source/frontend/src/features/leases/detail/LeasePages/details/PropertyInformation.tsx @@ -28,7 +28,7 @@ export const PropertyInformation: React.FunctionComponent< const areaUnitType = getIn(formikProps.values, withNameSpace(nameSpace, 'areaUnitType')); const legalDescription = getIn( formikProps.values, - withNameSpace(nameSpace, 'property.legalDescription'), + withNameSpace(nameSpace, 'property.landLegalDescription'), ); const pid = getIn(formikProps.values, withNameSpace(nameSpace, 'property.pid')); const pidText = pid ? `PID: ${pidFormatter(pid)}` : '';