From 903584f93688285ada3e5fcb71b3098ff31d8929 Mon Sep 17 00:00:00 2001 From: laurentbarontini Date: Mon, 29 Dec 2025 22:43:56 +0100 Subject: [PATCH] 29.12.25 --- src/App.jsx | 48 ++++++++---------------------------------------- 1 file changed, 8 insertions(+), 40 deletions(-) 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() {
( - - {payload.value} - - )} + barRadius={9} /> - {/* */} -