From af37fb1706aa406e678485724004232a8c48f317 Mon Sep 17 00:00:00 2001 From: Jessica McInchak Date: Wed, 18 Dec 2024 16:29:47 +0100 Subject: [PATCH] chore: update default description text for PropertyInformation (#4087) --- .../src/@planx/components/PropertyInformation/model.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/editor.planx.uk/src/@planx/components/PropertyInformation/model.ts b/editor.planx.uk/src/@planx/components/PropertyInformation/model.ts index 1d4fc94794..ebb955a5e2 100644 --- a/editor.planx.uk/src/@planx/components/PropertyInformation/model.ts +++ b/editor.planx.uk/src/@planx/components/PropertyInformation/model.ts @@ -10,9 +10,9 @@ export const parseContent = ( data: Record | undefined, ): PropertyInformation => ({ title: data?.title || "About the property", - description: - data?.description || - "This is the information we currently have about the property, including its title boundary shown in blue from the Land Registry", + description: data?.description || defaultDescription, showPropertyTypeOverride: data?.showPropertyTypeOverride || false, ...parseBaseNodeData(data), }); + +const defaultDescription = "

This is the information we currently have about the property.

The blue line shows the outline of the property (known as the title boundary). If this looks incorrect, go back a step and check you have selected the correct address.

We use this outline to create the site boundary where the project will take place. If your project covers a different area, you can change or redraw the site boundary on the next page.

";