diff --git a/src/components/home/HomeSection.tsx b/src/components/home/HomeSection.tsx index 85445db..25426f9 100644 --- a/src/components/home/HomeSection.tsx +++ b/src/components/home/HomeSection.tsx @@ -254,12 +254,7 @@ export const HomeSection = () => { {item.assigned_customer_count ?? '-'} {item.face_to_face_count ?? '-'} - {item.face_to_face_rate !== undefined - ? `${(item.face_to_face_rate * 100).toFixed(2)}%` - : item.assigned_customer_count && item.assigned_customer_count > 0 - ? `${((item.face_to_face_count ?? 0) / item.assigned_customer_count * 100).toFixed(2)}%` - : '-' - } + {item.face_to_face_rate}% ))}