From 2bd6b586849862c2782acf182be84f6df1638bb4 Mon Sep 17 00:00:00 2001 From: hrb-hub <181954414+hrb-hub@users.noreply.github.com> Date: Thu, 2 Jan 2025 17:14:02 +0100 Subject: [PATCH] Fix tuta.com domain not allowed for gift card signups Close #6902 --- src/common/subscription/giftcards/RedeemGiftCardWizard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/subscription/giftcards/RedeemGiftCardWizard.ts b/src/common/subscription/giftcards/RedeemGiftCardWizard.ts index 71a04315ce5c..30c7d75b8f11 100644 --- a/src/common/subscription/giftcards/RedeemGiftCardWizard.ts +++ b/src/common/subscription/giftcards/RedeemGiftCardWizard.ts @@ -343,7 +343,7 @@ class GiftCardCredentialsPage implements WizardPageN { readonly: model.newAccountData != null, prefilledMailAddress: model.newAccountData ? model.newAccountData.mailAddress : "", isBusinessUse: () => false, - isPaidSubscription: () => false, + isPaidSubscription: () => true, campaign: () => null, }) }