Skip to content

Commit dcc4bd5

Browse files
Alex KrawiecAlex Krawiec
authored andcommitted
Remove escape characters from hompage title and desc
1 parent 3a0b0e4 commit dcc4bd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/[[...path]]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,10 @@ export async function generateMetadata(props: MetadataProps): Promise<Metadata>
199199
? `https://${process.env.VERCEL_URL}`
200200
: domain;
201201
let title =
202-
'Sentry Docs | Application Performance Monitoring &amp; Error Tracking Software';
202+
'Sentry Docs | Application Performance Monitoring & Error Tracking Software';
203203
let customCanonicalTag: string = '';
204204
let description =
205-
'Self-hosted and cloud-based application performance monitoring &amp; error tracking that helps software teams see clearer, solve quicker, &amp; learn continuously.';
205+
'Self-hosted and cloud-based application performance monitoring & error tracking that helps software teams see clearer, solve quicker, &amp; learn continuously.';
206206
// show og image on the home page only
207207
const images =
208208
((await props.params).path ?? []).length === 0

0 commit comments

Comments
 (0)