Oops, remove extra console.log statement!

This commit is contained in:
Emi Matchu 2021-01-05 23:36:54 -08:00
parent 5865157a1b
commit cdf2c66686

View file

@ -187,9 +187,6 @@ const buildTradeMatchesLoader = (db) =>
e.currentUserId === currentUserId && e.currentUserId === currentUserId &&
e.direction === direction e.direction === direction
); );
if (entity && entity.publicUserId == "26378") {
console.log(entity);
}
return entity ? entity.itemIds.split(",") : []; return entity ? entity.itemIds.split(",") : [];
}); });
}, },