diff --git a/src/pages/Wallet/ExpiredAttributionTable.tsx b/src/pages/Wallet/ExpiredAttributionTable.tsx index 1ef4b84c..831d60ce 100644 --- a/src/pages/Wallet/ExpiredAttributionTable.tsx +++ b/src/pages/Wallet/ExpiredAttributionTable.tsx @@ -28,7 +28,11 @@ const useExpiredRows = ({ start, limit }: { start: number; limit: number }) => { }, attributionDate: { title: req.attributionDate, - content: {req.attributionDate}, + content: ( + + {new Date(req.attributionDate).toLocaleDateString("it-IT")} + + ), }, gross: { title: "€ " + req.amount?.gross?.value, @@ -44,7 +48,7 @@ const useExpiredRows = ({ start, limit }: { start: number; limit: number }) => { }, expiredDate: { title: expiredDate.toISOString().split("T")[0], - content: {expiredDate.toLocaleDateString()}, + content: {expiredDate.toLocaleDateString("it-IT")}, }, }; }),