From 40d103159af71737efcc6b97ef97f4b2b65b2ce3 Mon Sep 17 00:00:00 2001 From: francoism90 Date: Thu, 31 Oct 2024 17:55:34 +0000 Subject: [PATCH] Fix styling --- src/Models/Concerns/WithScroll.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Models/Concerns/WithScroll.php b/src/Models/Concerns/WithScroll.php index 4869d5c..66e3c12 100644 --- a/src/Models/Concerns/WithScroll.php +++ b/src/Models/Concerns/WithScroll.php @@ -78,7 +78,7 @@ public function isFetchable(): bool if ($this->items->isEmpty()) { return true; } - + return is_null($this->getFetchLimits()) || $this->fetchCount < $this->getFetchLimits(); }