diff --git a/server/boot/nonprofits.js b/server/boot/nonprofits.js index 988ded5f84..1d16e76b74 100644 --- a/server/boot/nonprofits.js +++ b/server/boot/nonprofits.js @@ -9,7 +9,7 @@ module.exports = function(app) { function nonprofitsDirectory(req, res, next) { Nonprofit.find( - { where: { estimatedHours: { $gt: 0 } } }, + { where: { estimatedHours: { gt: 0 } } }, function(err, nonprofits) { if (err) { return next(err); }