Skip to content

Commit

Permalink
Lower name
Browse files Browse the repository at this point in the history
  • Loading branch information
karlomikus committed Jan 2, 2025
1 parent 70589fd commit 891fdfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/External/Import/FromIngredientCSV.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function process(
'created_at' => now(),
'updated_at' => null,
]);
$category = (object) ['id' => $categoryId, 'name' => $ingredientExternal->category];
$category = (object) ['id' => $categoryId, 'name' => mb_strtolower($ingredientExternal->category)];
$categories->push($category);
}

Expand Down

0 comments on commit 891fdfd

Please sign in to comment.