diff --git a/client/components/mma/cancel/cancellationSaves/CancelAlternativeOffer.tsx b/client/components/mma/cancel/cancellationSaves/CancelAlternativeOffer.tsx index 8c5d65879..1d864e772 100755 --- a/client/components/mma/cancel/cancellationSaves/CancelAlternativeOffer.tsx +++ b/client/components/mma/cancel/cancellationSaves/CancelAlternativeOffer.tsx @@ -491,9 +491,14 @@ export const CancelAlternativeOffer = () => { Your {mainPlan.billingPeriod}ly payments of{' '} {mainPlan.currency} {humanReadableStrikethroughPrice} will automatically resume - on {nextNonDiscountedPaymentDate} unless you cancel. Cannot - be used together with any other subscription offer you may - currently have. + on {nextNonDiscountedPaymentDate} unless you cancel. + {alternativeIsOffer && ( + <> + {' '} + Cannot be used together with any other subscription + offer you may currently have. + + )}

)}