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.

";