diff --git a/support-frontend/assets/components/priceCards/priceCards.tsx b/support-frontend/assets/components/priceCards/priceCards.tsx index 1f196265bc..4360c14efe 100644 --- a/support-frontend/assets/components/priceCards/priceCards.tsx +++ b/support-frontend/assets/components/priceCards/priceCards.tsx @@ -66,7 +66,7 @@ export type PriceCardsProps = { currency: IsoCurrency; onAmountChange: (newAmount: string) => void; paymentInterval?: PriceCardPaymentInterval; - otherAmountField?: React.ReactNode; + otherAmountField: React.ReactNode; hideChooseYourAmount?: boolean; }; @@ -123,7 +123,7 @@ export function PriceCards({ )} - {(!hideChooseYourAmount || !amounts.length) && otherAmountField} + {enableChooseYourAmountButton && otherAmountField} ); }