diff --git a/src/components/admin/dashboard/FollowUpWidget.tsx b/src/components/admin/dashboard/FollowUpWidget.tsx index 8f5c978..24722f5 100644 --- a/src/components/admin/dashboard/FollowUpWidget.tsx +++ b/src/components/admin/dashboard/FollowUpWidget.tsx @@ -12,34 +12,33 @@ export async function FollowUpWidget() { - Require Follow-up + Richiedi Follow-up {leadsNeedingFollowUp.length > 0 ? ( <> - {leadsNeedingFollowUp.length} lead{leadsNeedingFollowUp.length !== 1 ? "s" : ""}{" "} - to contact + {leadsNeedingFollowUp.length} lead da contattare {leadsNeedingFollowUp.slice(0, 3).map((lead) => ( {lead.name} - Contact + Contatta ))} {leadsNeedingFollowUp.length > 3 && ( - View All ({leadsNeedingFollowUp.length}) + Vedi Tutto ({leadsNeedingFollowUp.length}) )} > ) : ( - All leads are up to date! + Tutti i lead sono aggiornati! )}
- {leadsNeedingFollowUp.length} lead{leadsNeedingFollowUp.length !== 1 ? "s" : ""}{" "} - to contact + {leadsNeedingFollowUp.length} lead da contattare
All leads are up to date!
Tutti i lead sono aggiornati!