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
parent fca2dff2e2
commit ee771f5bad
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));
},
});