This commit is contained in:
2025-12-08 15:58:30 +03:30
parent 2525b5b11a
commit 778f71fb9c
2 changed files with 4 additions and 4 deletions
@@ -52,7 +52,7 @@ export class ReviewRepository extends EntityRepository<Review> {
limit,
offset,
orderBy: { [orderBy]: order.toLowerCase() as 'asc' | 'desc' },
populate: ['food', 'user', 'order'],
// populate: ['food', 'user', 'order'],
});
const totalPages = Math.ceil(total / limit);