File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
dotcom-rendering/src/components/marketing Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export const ContributionsEpicCtasContainer: ReactComponent<Props> = ({
63
63
countryCode = { countryCode }
64
64
selectedProduct = { threeTierChoiceCardSelectedProduct }
65
65
setSelectedProduct = { setThreeTierChoiceCardSelectedProduct }
66
- choices = { getChoiceCardData ( false , countryCode ) }
66
+ choices = { getChoiceCardData ( true , countryCode ) }
67
67
supporterPlusDiscount = {
68
68
hasSupporterPlusPromoCode ? 0.5 : undefined
69
69
}
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ export const contributionType: ContributionType = {
34
34
} ;
35
35
36
36
export const getChoiceCardData = (
37
- shorterBenefits : boolean ,
37
+ longerBenefits : boolean ,
38
38
countryCode ?: string ,
39
39
) : ChoiceInfo [ ] => {
40
40
return countryCode === 'US'
41
- ? ChoiceCardTestData_US ( shorterBenefits )
42
- : ChoiceCardTestData_REGULAR ( shorterBenefits ) ;
41
+ ? ChoiceCardTestData_US ( longerBenefits )
42
+ : ChoiceCardTestData_REGULAR ( longerBenefits ) ;
43
43
} ;
You can’t perform that action at this time.
0 commit comments