Merge pull request #697 from aliasgar55/main

fixed: #686
This commit is contained in:
Anoop M D
2023-10-22 16:50:44 +05:30
committed by GitHub

View File

@@ -393,8 +393,8 @@ export const deleteItem = (itemUid, collectionUid) => (dispatch, getState) => {
});
};
export const sortCollections = () => (dispatch) => {
dispatch(_sortCollections());
export const sortCollections = (payload) => (dispatch) => {
dispatch(_sortCollections(payload));
};
export const moveItem = (collectionUid, draggedItemUid, targetItemUid) => (dispatch, getState) => {
const state = getState();