update validation message for email/username field in SignIn component
This commit is contained in:
@@ -108,7 +108,11 @@ const SignIn = () => {
|
||||
label="Email / Username"
|
||||
name="identifier"
|
||||
rules={[
|
||||
{ required: true, type: 'email', message: 'Email tidak boleh kosong' },
|
||||
{
|
||||
required: true,
|
||||
type: 'email',
|
||||
message: 'Email / Username tidak boleh kosong',
|
||||
},
|
||||
]}
|
||||
>
|
||||
<Input placeholder="Email / Username" size="large" />
|
||||
|
||||
Reference in New Issue
Block a user