This commit is contained in:
2025-12-08 16:07:16 +03:30
parent 778f71fb9c
commit ec10ab2d4a
@@ -52,7 +52,7 @@ export class ReviewRepository extends EntityRepository<Review> {
limit, limit,
offset, offset,
orderBy: { [orderBy]: order.toLowerCase() as 'asc' | 'desc' }, orderBy: { [orderBy]: order.toLowerCase() as 'asc' | 'desc' },
// populate: ['food', 'user', 'order'], populate: ['food'],
}); });
const totalPages = Math.ceil(total / limit); const totalPages = Math.ceil(total / limit);