const localToRemote = compare(local, remote, ignored);
if (localToRemote.added.length > 0 || localToRemote.removed.length > 0 || localToRemote.updated.length > 0) {
const baseToLocal = compare(lastSync, local, ignored);
const baseToRemote = compare(lastSync, remote, ignored);
// Remotely removed profiles
for (const id of baseToRemote.removed) {
const e = local.find(profile => profile.id === id);
if (e) {