Skip to content

Commit 0656c1f

Browse files
authored
fix: update DE modal value in Offer Accordion (#1180)
1 parent 32ec0c2 commit 0656c1f

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

content/offers/DE/long_term.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"formattedMinAmount": "${CREDIT_OFFERS_DS.formattedMinAmount}",
2323
"formattedMaxAmount": "${CREDIT_OFFERS_DS.formattedMaxAmount}",
2424
"formattedTotalCost": "${CREDIT_OFFERS_DS.formattedTotalCost}",
25+
"formattedTransactionAmount": "${CREDIT_OFFERS_DS.formattedTransactionAmount}",
2526
"minAmount": "${CREDIT_OFFERS_DS.minAmount}",
2627
"maxAmount": "${CREDIT_OFFERS_DS.maxAmount}",
2728
"apr": "${CREDIT_OFFERS_DS.apr}",

content/offers/DE/long_term_en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"formattedMinAmount": "${CREDIT_OFFERS_DS.formattedMinAmount}",
2323
"formattedMaxAmount": "${CREDIT_OFFERS_DS.formattedMaxAmount}",
2424
"formattedTotalCost": "${CREDIT_OFFERS_DS.formattedTotalCost}",
25+
"formattedTransactionAmount": "${CREDIT_OFFERS_DS.formattedTransactionAmount}",
2526
"minAmount": "${CREDIT_OFFERS_DS.minAmount}",
2627
"maxAmount": "${CREDIT_OFFERS_DS.maxAmount}",
2728
"apr": "${CREDIT_OFFERS_DS.apr}",

src/components/modal/v2/parts/OfferAccordion.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const OfferAccordion = ({
5050
<div className="accordion__row">
5151
<div className="accordion__offer-field-title">{termsLabel?.eMoney}</div>
5252
<div className="accordion__offer-field-value">
53-
{currencySymbolFormat(meta?.formattedPeriodicPayment)}
53+
{currencySymbolFormat(meta?.formattedTransactionAmount)}
5454
</div>
5555
</div>
5656
<div className="accordion__row">

0 commit comments

Comments
 (0)