diff --git a/src/App.jsx b/src/App.jsx index 397f11c1..4e562db3 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -538,12 +538,9 @@ export default function App() { {cards.map((card) => { const Icon = card.icon; const bar_data = [ - { - name: "Amounts", - Invoiced: card.amountInvoiced, - "30 days": card.amount30Days, - "60 days": card.amount60Days, - }, + { label: "Invoiced", invoiced: card.amountInvoiced }, + { label: "30 days", pay30: card.amount30Days }, + { label: "60 days", pay60: card.amount60Days }, ]; return ( @@ -561,46 +558,17 @@ export default function App() {