Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
kennsippell committed Nov 23, 2024
1 parent 687a6a2 commit 49c6d51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/fn/merge-contacts.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
docDirectoryPath: args.docDirectoryPath,
force: args.force,
};
return HierarchyOperations(options, db).merge(args.sourceIds, args.destinationId);
return HierarchyOperations(db, options).merge(args.sourceIds, args.destinationId);
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/fn/move-contacts.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
docDirectoryPath: args.docDirectoryPath,
force: args.force,
};
return HierarchyOperations(options, db).move(args.sourceIds, args.destinationId);
return HierarchyOperations(db, options).move(args.sourceIds, args.destinationId);
}
};

Expand Down

0 comments on commit 49c6d51

Please sign in to comment.