File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed
dotcom-rendering/src/components/marketing/epics Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export const ChoiceCardTestData_REGULAR = (
25
25
discount ?: number ,
26
26
) : JSX . Element | string => {
27
27
if ( ! isUndefined ( discount ) ) {
28
- return isDiscountActive ? (
28
+ return (
29
29
< >
30
30
Support{ ' ' }
31
31
< s >
@@ -35,16 +35,6 @@ export const ChoiceCardTestData_REGULAR = (
35
35
{ currencySymbol }
36
36
{ amount * ( 1 - discount ) } /year{ ' ' }
37
37
</ >
38
- ) : (
39
- < >
40
- Support{ ' ' }
41
- < s >
42
- { currencySymbol }
43
- { amount }
44
- </ s > { ' ' }
45
- { currencySymbol }
46
- { amount * ( 1 - discount ) } /month{ ' ' }
47
- </ >
48
38
) ;
49
39
} else {
50
40
return `Support ${ currencySymbol } ${ amount } /month` ;
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ export const ThreeTierChoiceCards = ({
244
244
position : relative;
245
245
` }
246
246
>
247
- { hasDiscount && countryCode !== 'US' && (
247
+ { hasDiscount && (
248
248
< DiscountedPill
249
249
discount = { supporterPlusDiscount * 100 }
250
250
/>
You can’t perform that action at this time.
0 commit comments