diff --git a/frontend/src/lib/i18n/locales/en-US.json b/frontend/src/lib/i18n/locales/en-US.json index bc4236e..a023bae 100644 --- a/frontend/src/lib/i18n/locales/en-US.json +++ b/frontend/src/lib/i18n/locales/en-US.json @@ -68,6 +68,8 @@ "authorizeLoadingSubtitle": "Please wait while we load the client information.", "authorizeSuccessTitle": "Authorized", "authorizeSuccessSubtitle": "You will be redirected to the app in a few seconds.", + "authorizeErrorClientInfo": "An error occurred while loading the client information. Please try again later.", + "authorizeErrorMissingParams": "The following parameters are missing: {{missingParams}}", "openidScopeName": "OpenID Connect", "openidScopeDescription": "Allows the app to access your OpenID Connect information.", "emailScopeName": "Email", diff --git a/frontend/src/lib/i18n/locales/en.json b/frontend/src/lib/i18n/locales/en.json index bc4236e..a023bae 100644 --- a/frontend/src/lib/i18n/locales/en.json +++ b/frontend/src/lib/i18n/locales/en.json @@ -68,6 +68,8 @@ "authorizeLoadingSubtitle": "Please wait while we load the client information.", "authorizeSuccessTitle": "Authorized", "authorizeSuccessSubtitle": "You will be redirected to the app in a few seconds.", + "authorizeErrorClientInfo": "An error occurred while loading the client information. Please try again later.", + "authorizeErrorMissingParams": "The following parameters are missing: {{missingParams}}", "openidScopeName": "OpenID Connect", "openidScopeDescription": "Allows the app to access your OpenID Connect information.", "emailScopeName": "Email", diff --git a/frontend/src/pages/authorize-page.tsx b/frontend/src/pages/authorize-page.tsx index 50acb02..26c7934 100644 --- a/frontend/src/pages/authorize-page.tsx +++ b/frontend/src/pages/authorize-page.tsx @@ -112,7 +112,7 @@ export const AuthorizePage = () => { if (missingParams.length > 0) { return ( ); @@ -138,7 +138,7 @@ export const AuthorizePage = () => { if (getClientInfo.isError) { return ( );