Skip to content

Commit b1df074

Browse files
committed
fix(clerk-js): Reset Password missing localization keys
1 parent 14cbe8e commit b1df074

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/localizations/src/en-US.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ export const enUS: LocalizationResource = {
141141
title_phone: 'Check your phone',
142142
subtitle: 'to reset your password',
143143
formTitle: 'Reset password code',
144-
formSubtitle: 'Enter the code sent to your email address',
144+
formSubtitle_email: 'Enter the code sent to your email address',
145+
formSubtitle_phone: 'Enter the code sent to your phone number',
145146
resendButton: 'Resend code',
146147
},
147148
resetPassword: {

packages/types/src/localization.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ type _LocalizationResource = {
158158
title_phone: LocalizationValue;
159159
subtitle: LocalizationValue;
160160
formTitle: LocalizationValue;
161-
formSubtitle: LocalizationValue;
161+
formSubtitle_email: LocalizationValue;
162+
formSubtitle_phone: LocalizationValue;
162163
resendButton: LocalizationValue;
163164
};
164165
resetPassword: {

0 commit comments

Comments
 (0)