From 6807be41b6a8927a8a47ec71ccc9c79719755438 Mon Sep 17 00:00:00 2001 From: Rafiafrzl Date: Thu, 9 Oct 2025 14:42:21 +0700 Subject: [PATCH] update validation message for email/username field in SignIn component --- src/pages/auth/SignIn.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pages/auth/SignIn.jsx b/src/pages/auth/SignIn.jsx index 3652889..942e663 100644 --- a/src/pages/auth/SignIn.jsx +++ b/src/pages/auth/SignIn.jsx @@ -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', + }, ]} >