Skip to content

Commit 296f52e

Browse files
authored
fix(localizations): correct username placeholder in en-GB (#8040)
1 parent 7c3c2bf commit 296f52e

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@clerk/localizations": patch
3+
---
4+
5+
Fix en-GB username field placeholder (was showing literal "undefined" instead of "Enter your username")

packages/localizations/src/en-GB.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export const enGB: LocalizationResource = {
223223
formFieldInputPlaceholder__organizationSlug: 'my-org',
224224
formFieldInputPlaceholder__password: 'Enter your password',
225225
formFieldInputPlaceholder__phoneNumber: 'Enter your phone number',
226-
formFieldInputPlaceholder__username: undefined,
226+
formFieldInputPlaceholder__username: 'Enter your username',
227227
formFieldInput__emailAddress_format: undefined,
228228
formFieldLabel__apiKey: 'API key',
229229
formFieldLabel__apiKeyDescription: 'Description',

0 commit comments

Comments
 (0)