0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Removed errant console.log

This commit is contained in:
Kevin Ansfield 2022-02-15 21:41:12 +00:00
parent 03defc274e
commit 80c6f93b21

View file

@ -86,8 +86,6 @@ export default function mockMembers(server) {
]
});
console.log(nqlFilter.toJSON());
collection = collection.filter((member) => {
const serializedMember = {};
@ -107,8 +105,6 @@ export default function mockMembers(server) {
serializedMember.labels.push(serializedLabel);
});
console.log({serializedMember});
return nqlFilter.queryJSON(serializedMember);
});
}