From 7dd38aa50c11f7166bb0463e5752bf60f270e1db Mon Sep 17 00:00:00 2001 From: Rafiafrzl Date: Thu, 13 Nov 2025 15:22:45 +0700 Subject: [PATCH] Change inactive contact status color to red for better visibility --- src/pages/contact/component/ListContact.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/contact/component/ListContact.jsx b/src/pages/contact/component/ListContact.jsx index 5cb789c..ce4eb33 100644 --- a/src/pages/contact/component/ListContact.jsx +++ b/src/pages/contact/component/ListContact.jsx @@ -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',