Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ngotchac committed Dec 28, 2016
1 parent d7be555 commit 76496bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/ui/Form/AddressSelect/addressSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ class AddressSelect extends Component {
.reverse()
.findIndex((cat) => cat.values.length > 0) + 1;

nextCategory = Math.max(prevCategoryIndex - categoryShift, 0);
nextCategory = Math.max(prevCategoryIndex - categoryShift, 0);
}

// If left or right: try to keep the horizontal index
Expand Down

0 comments on commit 76496bb

Please sign in to comment.