Skip to content

Commit

Permalink
chore: update default description text for PropertyInformation (#4087)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak authored Dec 18, 2024
1 parent 2a7be85 commit af37fb1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export const parseContent = (
data: Record<string, any> | 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 = "<p>This is the information we currently have about the property.</p><p>The blue line shows the <strong>outline</strong> of the property (known as the title boundary). If this looks incorrect, go back a step and <strong>check you have selected the correct address</strong>.</p><p>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.</p>";

0 comments on commit af37fb1

Please sign in to comment.