Skip to content

Commit

Permalink
fix linting errors - lines too long
Browse files Browse the repository at this point in the history
  • Loading branch information
tjsilver committed Nov 19, 2019
1 parent f39772e commit 3bbf45e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ const mapStateToProps = (state: State) => ({
country: state.common.internationalisation.countryId,
stripeV3HasLoaded: state.page.form.stripeV3HasLoaded,
stripeElementsRecurringTestVariant: state.common.abParticipations.stripeElementsRecurring,
paymentSecuritySecureTransactionGreyNonUKVariant: state.common.abParticipations.paymentSecuritySecureTransactionGreyNonUK,
paymentSecuritySecureTransactionGreyNonUKVariant:
state.common.abParticipations.paymentSecuritySecureTransactionGreyNonUK,
recurringStripePaymentRequestButtonTestVariant: state.common.abParticipations.recurringStripePaymentRequestButton,
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ const mapStateToProps = (state: State) => ({
existingPaymentMethod: state.page.form.existingPaymentMethod,
isTestUser: state.page.user.isTestUser || false,
switches: state.common.settings.switches,
paymentSecuritySecureTransactionGreyNonUKVariant: state.common.abParticipations.paymentSecuritySecureTransactionGreyNonUK,
paymentSecuritySecureTransactionGreyNonUKVariant:
state.common.abParticipations.paymentSecuritySecureTransactionGreyNonUK,
});

const mapDispatchToProps = {
Expand Down

0 comments on commit 3bbf45e

Please sign in to comment.