Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
sprankhub authored Sep 21, 2023
1 parent 19fbacc commit 34eafb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugin/GetProductsFromCategoryBlockPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function afterGetLoadedProductCollection(
}
$i = 0;
foreach ($collection as $product) {
if ($maximumCategoryProducts > 0 && $i > $maximumCategoryProducts) {
if ($i > $maximumCategoryProducts) {
break;
}

Expand Down

0 comments on commit 34eafb1

Please sign in to comment.