fix(email): maxLength 64 #52

Merged
zain_arif merged 1 commits from lavoce into main 2026-06-05 08:57:05 +00:00
Showing only changes of commit cabf0e4ce1 - Show all commits

View File

@@ -13,7 +13,7 @@ const DetailContact = memo(function DetailContact(props) {
id: '', id: '',
name: '', name: '',
phone: '', phone: '',
email: '', email: '',
is_active: true, is_active: true,
}; };
@@ -291,7 +291,7 @@ const DetailContact = memo(function DetailContact(props) {
onChange={handleInputChange} onChange={handleInputChange}
placeholder="Enter Email Number" placeholder="Enter Email Number"
readOnly={props.readOnly} readOnly={props.readOnly}
maxLength={15} maxLength={64}
style={{ color: formData.is_active ? '#000000' : '#ff4d4f' }} style={{ color: formData.is_active ? '#000000' : '#ff4d4f' }}
/> />
</div> </div>