Skip to content

Commit 3a93528

Browse files
committed
fix some errors
1 parent abd2d90 commit 3a93528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/clothingItems.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const ForbiddenError = require("../errors/forbidden-err");
1111

1212
const getClothingItem = (req, res, next) => {
1313
ClothingItem.find({})
14-
.orFail()
14+
// .orFail()
1515
.then((item) => res.status(200).send(item))
1616
.catch((err) => {
1717
console.log(err.name);

0 commit comments

Comments
 (0)