fix: fix typo in error screen

This commit is contained in:
Stavros
2026-01-25 20:04:20 +02:00
parent fae1345a06
commit 9cbcd62c6e
3 changed files with 5 additions and 3 deletions

View File

@@ -51,7 +51,8 @@
"forgotPasswordTitle": "Forgot your password?",
"failedToFetchProvidersTitle": "Failed to load authentication providers. Please check your configuration.",
"errorTitle": "An error occurred",
"errorSubtitle": "An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitleInfo": "The following error occurred while processing your request:",
"errorSubtitle": "An error occurred while trying to perform this action. Please check your browser console or the app logs for more information.",
"forgotPasswordMessage": "You can reset your password by changing the `USERS` environment variable.",
"fieldRequired": "This field is required",
"invalidInput": "Invalid input",

View File

@@ -51,7 +51,8 @@
"forgotPasswordTitle": "Forgot your password?",
"failedToFetchProvidersTitle": "Failed to load authentication providers. Please check your configuration.",
"errorTitle": "An error occurred",
"errorSubtitle": "An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitleInfo": "The following error occurred while processing your request:",
"errorSubtitle": "An error occurred while trying to perform this action. Please check your browser console or the app logs for more information.",
"forgotPasswordMessage": "You can reset your password by changing the `USERS` environment variable.",
"fieldRequired": "This field is required",
"invalidInput": "Invalid input",

View File

@@ -20,7 +20,7 @@ export const ErrorPage = () => {
<CardDescription className="flex flex-col gap-1.5">
{error ? (
<>
<p>The following error occured while processing your request:</p>
<p>{t("errorSubtitleInfo")}</p>
<pre>{error}</pre>
</>
) : (