SyncCollections: fix the return type of the setSyncCollection action.

master
Tom Hacohen 4 years ago
parent 2456b2645f
commit 1489f8ec1b

@ -144,9 +144,9 @@ export const itemBatch = createAction(
export const setSyncCollection = createAction(
"SET_SYNC_COLLECTION",
(colUid: string, stoken: string) => {
(uid: string, stoken: string) => {
return {
colUid,
uid,
stoken,
};
}

Loading…
Cancel
Save