Change inactive contact status color to red for better visibility

This commit is contained in:
2025-11-13 15:22:45 +07:00
parent b2bcaa6b5f
commit 7dd38aa50c

View File

@@ -89,7 +89,7 @@ const ContactCard = memo(function ContactCard({ contact, showEditModal, showDele
height: 55,
borderRadius: '50%',
backgroundColor:
contact.status === 'active' ? '#52c41a' : '#8c8c8c',
contact.status === 'active' ? '#52c41a' : '#ff4d4f',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',