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
commit e8199f102a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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