Fable findings in data
This commit is contained in:
parent
b98bc6d611
commit
6a33b03fdf
20 changed files with 1502 additions and 274 deletions
|
|
@ -171,7 +171,9 @@ export const PRIVACY: LegalDoc = {
|
|||
},
|
||||
{
|
||||
heading: '8. Children',
|
||||
paragraphs: ['The service is aimed at home buyers and renters and is not directed at children under 16.'],
|
||||
paragraphs: [
|
||||
'The service is aimed at home buyers and renters and is not directed at children under 16.',
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: '9. Changes to this policy',
|
||||
|
|
|
|||
|
|
@ -23,7 +23,9 @@ interface SearchHook {
|
|||
|
||||
/** Addresses arrive in raw ALL-CAPS Land Registry casing; title-case for display. */
|
||||
function titleCaseAddress(address: string): string {
|
||||
return address.toLowerCase().replace(/(^|[\s\-/(])([a-z])/g, (_, sep, c) => sep + c.toUpperCase());
|
||||
return address
|
||||
.toLowerCase()
|
||||
.replace(/(^|[\s\-/(])([a-z])/g, (_, sep, c) => sep + c.toUpperCase());
|
||||
}
|
||||
|
||||
interface PlaceSearchInputProps {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue