diff --git a/libs/payments/ui/src/lib/client/components/ChurnCancel/index.tsx b/libs/payments/ui/src/lib/client/components/ChurnCancel/index.tsx index 4c4f5240e0e..9c30e8f1d3f 100644 --- a/libs/payments/ui/src/lib/client/components/ChurnCancel/index.tsx +++ b/libs/payments/ui/src/lib/client/components/ChurnCancel/index.tsx @@ -126,10 +126,8 @@ export function ChurnCancel({ setLoading(false); } - const isActiveNotCanceling = !!active && !cancelAtPeriodEnd; - const isOffer = reason === 'eligible' && isActiveNotCanceling; - const isDiscountAlreadyApplied = - reason === 'discount_already_applied' && isActiveNotCanceling; + const isOffer = reason === 'eligible' && !cancelAtPeriodEnd && active; + const isDiscountAlreadyApplied = reason === 'discount_already_applied'; return (