Skip to content

Commit b5c402e

Browse files
committed
fix: add missing period to error message for consistency in localization
1 parent 778dac1 commit b5c402e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/public/components/error.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const LoginErrorMessage: React.FC = () => {
9696
case 'login_state_error':
9797
return t('public~There was an error generating login state.');
9898
case 'cookie_error':
99-
return t('public~There was an error setting login state cookie');
99+
return t('public~There was an error setting login state cookie.');
100100
case 'logout_error':
101101
return t('public~There was an error logging you out. Please try again.');
102102
case 'auth':

frontend/public/locales/en/public.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@
534534
"There was a problem processing the request. Please try again.": "There was a problem processing the request. Please try again.",
535535
"There was an error generating OAuth client from OIDC client.": "There was an error generating OAuth client from OIDC client.",
536536
"There was an error generating login state.": "There was an error generating login state.",
537-
"There was an error setting login state cookie": "There was an error setting login state cookie",
537+
"There was an error setting login state cookie.": "There was an error setting login state cookie.",
538538
"There was an error logging you out. Please try again.": "There was an error logging you out. Please try again.",
539539
"There was an error parsing your state cookie.": "There was an error parsing your state cookie.",
540540
"There was an error verifying your session. Please log out and try again.": "There was an error verifying your session. Please log out and try again.",

0 commit comments

Comments
 (0)