diff --git a/app/Filament/Resources/ServerResource.php b/app/Filament/Resources/ServerResource.php index 6af5c6d62..4f7ab8dc6 100644 --- a/app/Filament/Resources/ServerResource.php +++ b/app/Filament/Resources/ServerResource.php @@ -265,9 +265,8 @@ class ServerResource extends Resource ->required() ->live() ->rows(function ($state) { - return str($state)->explode("\n")->reduce(fn (int $carry, $line) - => $carry + floor(strlen($line) / 125), - 0); + return str($state)->explode("\n")->reduce(fn (int $carry, $line) => $carry + floor(strlen($line) / 125), + 0); }) ->columnSpanFull(),