From 40a82838b68ce12b734a181ed0aa8af246a5bc46 Mon Sep 17 00:00:00 2001 From: saltrafael Date: Sat, 11 Sep 2021 08:14:32 -0300 Subject: [PATCH] Fix collection delete breaking --- ui/component/collectionMenuList/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/collectionMenuList/index.js b/ui/component/collectionMenuList/index.js index dc687b444..f8e244bb1 100644 --- a/ui/component/collectionMenuList/index.js +++ b/ui/component/collectionMenuList/index.js @@ -18,7 +18,7 @@ const select = (state, props) => { }; const perform = (dispatch) => ({ - openModal: (modal, props) => dispatch(doOpenModal(modal, props)), + doOpenModal: (modal, props) => dispatch(doOpenModal(modal, props)), doToggleShuffleList: (collectionId) => { dispatch(doToggleLoopList(collectionId, false, true)); dispatch(doToggleShuffleList(undefined, collectionId, true, true));