@@ -11,7 +11,7 @@ export const ChoiceCardTestData_REGULAR = (
11
11
isDiscountActive
12
12
? `Support ${ currencySymbol } ${ amount } /year`
13
13
: `Support ${ currencySymbol } ${ amount } /month` ,
14
- benefitsLabel : 'Support' ,
14
+ benefitsLabel : longerBenefits ? 'Support' : undefined ,
15
15
benefits : ( ) => [
16
16
'Exclusive newsletter for supporters, sent every week from the Guardian newsroom' ,
17
17
] ,
@@ -40,7 +40,7 @@ export const ChoiceCardTestData_REGULAR = (
40
40
return `Support ${ currencySymbol } ${ amount } /month` ;
41
41
}
42
42
} ,
43
- benefitsLabel : 'All-access digital' ,
43
+ benefitsLabel : longerBenefits ? 'All-access digital' : undefined ,
44
44
benefits : ( ) =>
45
45
longerBenefits
46
46
? fullSupporterPlusBenefits
@@ -66,7 +66,7 @@ export const ChoiceCardTestData_US = (
66
66
isDiscountActive
67
67
? `Support ${ currencySymbol } ${ amount } /year`
68
68
: `Support ${ currencySymbol } ${ amount } /month` ,
69
- benefitsLabel : 'Support' ,
69
+ benefitsLabel : longerBenefits ? 'Support' : undefined ,
70
70
benefits : ( ) => [
71
71
'Exclusive newsletter for supporters, sent every week from the Guardian newsroom' ,
72
72
] ,
@@ -95,7 +95,7 @@ export const ChoiceCardTestData_US = (
95
95
return `Support ${ currencySymbol } ${ amount } /month` ;
96
96
}
97
97
} ,
98
- benefitsLabel : 'All-access digital' ,
98
+ benefitsLabel : longerBenefits ? 'All-access digital' : undefined ,
99
99
benefits : ( ) =>
100
100
longerBenefits
101
101
? fullSupporterPlusBenefits
@@ -125,5 +125,4 @@ const fullSupporterPlusBenefits = [
125
125
const shorterSupporterPlusBenefits = [
126
126
'Unlimited access to the Guardian app and Feast app' ,
127
127
'Ad-free reading on all your devices' ,
128
- 'Exclusive supporter newsletter' ,
129
128
] ;
0 commit comments