We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f968e2 commit 644618eCopy full SHA for 644618e
1 file changed
packages/ui/src/components/Checkout/CheckoutForm.tsx
@@ -84,7 +84,9 @@ export const CheckoutForm = withCardStateProvider(() => {
84
{showProratedCredit && (
85
<LineItems.Group variant='tertiary'>
86
<LineItems.Title title={localizationKeys('billing.creditRemainder')} />
87
- <LineItems.Description text={`- ${totals.credit?.currencySymbol}${totals.credit?.amountFormatted}`} />
+ <LineItems.Description
88
+ text={`- ${totals.credits?.proration?.amount.currencySymbol}${totals.credits?.proration?.amount.amountFormatted}`}
89
+ />
90
</LineItems.Group>
91
)}
92
{showAccountCredits && (
0 commit comments