Fix closeModal invocation (#2239)
Fixes #2238
Some call sites where missed in 382b2a506a
			
			
This commit is contained in:
		@@ -8,7 +8,7 @@ import Dropdown from '../components/dropdown';
 | 
			
		||||
const mapDispatchToProps = dispatch => ({
 | 
			
		||||
  isUserTouching,
 | 
			
		||||
  onModalOpen: props => dispatch(openModal({ modalType: 'ACTIONS', modalProps: props })),
 | 
			
		||||
  onModalClose: () => dispatch(closeModal()),
 | 
			
		||||
  onModalClose: () => dispatch(closeModal({ modalType: undefined, ignoreFocus: false })),
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
export default connect(null, mapDispatchToProps)(Dropdown);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user