diff --git a/src/components/client/donation-flow/steps/payment-method/TaxesCheckbox.tsx b/src/components/client/donation-flow/steps/payment-method/TaxesCheckbox.tsx index 8bd7479bd..26f7964bd 100644 --- a/src/components/client/donation-flow/steps/payment-method/TaxesCheckbox.tsx +++ b/src/components/client/donation-flow/steps/payment-method/TaxesCheckbox.tsx @@ -12,6 +12,7 @@ export const TaxesCheckbox = () => { const { t } = useTranslation('donation-flow') const [amountWithFees] = useField('finalAmount') const [amountWithoutFees] = useField('amountWithoutFees') + const showCalculatedFees = Boolean(amountWithFees.value) return ( <> @@ -50,7 +51,7 @@ export const TaxesCheckbox = () => { /> - {!!amountWithFees.value && ( + {showCalculatedFees && (