Skip to content
This repository has been archived by the owner on Jul 9, 2019. It is now read-only.

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
James Baxley committed Dec 2, 2016
1 parent 80580e7 commit 9df1fbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imports/blocks/checkout-buttons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export class CheckoutButton extends Component {
this.props.savedPayments.refetch()
.then(({ data }) => {
if (data.savedPayments && data.savedPayments.length) {
const details = sortBy(data.savedPayments, "date")[data.savedPayments.length - 1]
const details = sortBy(data.savedPayments, "date")[data.savedPayments.length - 1];
this.props.dispatch(giveActions.setAccount(details));
}
this.props.dispatch(modal.render(Give));
Expand Down

0 comments on commit 9df1fbb

Please sign in to comment.