update validation message for email/username field in SignIn component

This commit is contained in:
2025-10-09 14:42:21 +07:00
parent 7a9cf46e39
commit 6807be41b6

View File

@@ -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" />