diff --git a/src/components/OptionsSelector.js b/src/components/OptionsSelector.js index 2f113f58dd03..c41677a0d775 100755 --- a/src/components/OptionsSelector.js +++ b/src/components/OptionsSelector.js @@ -220,8 +220,8 @@ class OptionsSelector extends Component { allOptions: newOptions, focusedIndex: newFocusedIndex, }, () => { - // If we just selected a new option on a multiple-selection page, scroll to the top - if (this.props.selectedOptions.length > prevProps.selectedOptions.length) { + // If we just toggled an option on a multi-selection page, scroll to top + if (this.props.selectedOptions.length !== prevProps.selectedOptions.length) { this.scrollToIndex(0); return; }