Skip to content

Commit

Permalink
change name placeholder (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBenediktBusch authored Feb 13, 2024
1 parent 108bbd0 commit 35469f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/berlin/src/pages/Account.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ function AccountForm({
{...register('username', { required: 'Username is required', minLength: 3 })}
errors={errors.username ? [errors.username.message ?? ''] : []}
/>
<Input label="Name" placeholder="Enter your Name" {...register('name')} />
<Input label="Name" placeholder="(First name, Last name)" {...register('name')} />
<Input label="Email" placeholder="Enter your Email" {...register('email')} />
<Controller
name="group"
Expand Down

0 comments on commit 35469f4

Please sign in to comment.