From f1dbf0b6ee44ff18132169e11931c2771e17b6cf Mon Sep 17 00:00:00 2001 From: ianshaloom Date: Sun, 8 Mar 2026 16:43:40 +0300 Subject: [PATCH] fix(reviews): remove redundant comment in ProductDetailReviewsPanel component --- .../product-detail/reviews/ProductDetailReviewsPanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/storefront/src/components/product-detail/reviews/ProductDetailReviewsPanel.tsx b/apps/storefront/src/components/product-detail/reviews/ProductDetailReviewsPanel.tsx index 956f902..809d5a1 100644 --- a/apps/storefront/src/components/product-detail/reviews/ProductDetailReviewsPanel.tsx +++ b/apps/storefront/src/components/product-detail/reviews/ProductDetailReviewsPanel.tsx @@ -27,7 +27,7 @@ export function ProductDetailReviewsPanel({ productId, initialRating, initialRev productId: productId as Id<"products">, sortBy, limit: offset + LIMIT, - offset: 0, // In this pattern, we increase limit to fetch more pages without resetting offset, so previously fetched array grows + offset: 0, }); if (result === undefined) return ;