We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd2d90 commit 3a93528Copy full SHA for 3a93528
controllers/clothingItems.js
@@ -11,7 +11,7 @@ const ForbiddenError = require("../errors/forbidden-err");
11
12
const getClothingItem = (req, res, next) => {
13
ClothingItem.find({})
14
- .orFail()
+ // .orFail()
15
.then((item) => res.status(200).send(item))
16
.catch((err) => {
17
console.log(err.name);
0 commit comments