Fix closeModal invocation (#2239)

Fixes #2238

Some call sites where missed in 382b2a506a
This commit is contained in:
Claire 2023-06-04 22:05:45 +02:00 committed by GitHub
commit ee771f5bad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

View file

@ -24,7 +24,10 @@ const mapDispatchToProps = (dispatch, { status, items, scrollKey }) => ({
},
onClose(id) {
dispatch(closeModal('ACTIONS'));
dispatch(closeModal({
modalType: 'ACTIONS',
ignoreFocus: false,
}));
dispatch(closeDropdownMenu(id));
},
});