From f04aeb9f2bcd5655b5c277021b5ce890cf442c55 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 22 Feb 2024 18:31:02 +0000 Subject: [PATCH] Fixed spacing Signed-off-by: snipe --- app/Http/Livewire/Importer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Livewire/Importer.php b/app/Http/Livewire/Importer.php index 7c908f1b6d..0a6c52f096 100644 --- a/app/Http/Livewire/Importer.php +++ b/app/Http/Livewire/Importer.php @@ -70,7 +70,7 @@ class Importer extends Component $tmp = array(); if ($this->activeFile) { $tmp = array_combine($this->activeFile->header_row, $this->field_map); - $tmp =array_filter($tmp); + $tmp = array_filter($tmp); } return json_encode($tmp);