diff --git a/docs/pages/error-page/+Page.mdx b/docs/pages/error-page/+Page.mdx index 11aca5ec40..e82b27bd20 100644 --- a/docs/pages/error-page/+Page.mdx +++ b/docs/pages/error-page/+Page.mdx @@ -35,7 +35,7 @@ function Page() { // Fallback error message msg = pageContext.is404 ? "This page doesn't exist." : - "Something went wrong. Sincere apologies. Try again (later)." + "Something went wrong. Try again (later)." } return

{msg}

diff --git a/examples/auth/pages/_error/+Page.tsx b/examples/auth/pages/_error/+Page.tsx index fe168ccc08..324b0b67dc 100644 --- a/examples/auth/pages/_error/+Page.tsx +++ b/examples/auth/pages/_error/+Page.tsx @@ -19,7 +19,7 @@ function Page() { // Fallback error message if (!msg) { - msg = pageContext.is404 ? "This page doesn't exist." : 'Something went wrong. Sincere apologies. Try again (later).' + msg = pageContext.is404 ? "This page doesn't exist." : 'Something went wrong. Try again (later).' title = pageContext.is404 ? "Doesn't exist" : 'Error' }