Skip to content

Commit 5589e12

Browse files
authored
Fix(ProductTable): Use continue for correct product filtering
1 parent 5138e60 commit 5589e12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/learn/thinking-in-react.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,10 @@ function ProductTable({ products, filterText, inStockOnly }) {
353353
filterText.toLowerCase()
354354
) === -1
355355
) {
356-
return;
356+
continue;
357357
}
358358
if (inStockOnly && !product.stocked) {
359-
return;
359+
continue;
360360
}
361361
if (product.category !== lastCategory) {
362362
rows.push(

0 commit comments

Comments
 (0)