From cabf0e4ce1e33236fdb2d96f2f0c8b08578452ff Mon Sep 17 00:00:00 2001 From: zain_arif Date: Fri, 5 Jun 2026 15:56:01 +0700 Subject: [PATCH] fix(email): maxLength 64 --- src/pages/contact/component/DetailContact.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/contact/component/DetailContact.jsx b/src/pages/contact/component/DetailContact.jsx index 11be6d9..1a98822 100644 --- a/src/pages/contact/component/DetailContact.jsx +++ b/src/pages/contact/component/DetailContact.jsx @@ -13,7 +13,7 @@ const DetailContact = memo(function DetailContact(props) { id: '', name: '', phone: '', - email: '', + email: '', is_active: true, }; @@ -291,7 +291,7 @@ const DetailContact = memo(function DetailContact(props) { onChange={handleInputChange} placeholder="Enter Email Number" readOnly={props.readOnly} - maxLength={15} + maxLength={64} style={{ color: formData.is_active ? '#000000' : '#ff4d4f' }} /> -- 2.49.1