diff --git a/src/components/modal/v2/parts/views/ShortTerm/Content.jsx b/src/components/modal/v2/parts/views/ShortTerm/Content.jsx index fbf1e8ceee..d723073feb 100644 --- a/src/components/modal/v2/parts/views/ShortTerm/Content.jsx +++ b/src/components/modal/v2/parts/views/ShortTerm/Content.jsx @@ -43,7 +43,7 @@ export const ShortTerm = ({ ? estimatedInstallments.items .map(timestamp => `${timestamp.total_payment} for ${timestamp.payment_date}`) .join(', ') - : donutTimestamps.map(timestamp => `${currencyFormat(periodicPayment)} for ${timestamp}`); + : donutTimestamps.map(timestamp => `${currencyFormat(periodicPayment)} for ${timestamp}`).join(', '); // regex replaces EUR with the euro symbol € const localeFormattedPayment = periodicPayment.replace(/(\s?EUR)/g, ' €');