diff --git a/lib/entities/PizzaRecipe/PizzaRecipe.dart b/lib/entities/PizzaRecipe/PizzaRecipe.dart index 6284bce..e1136f4 100644 --- a/lib/entities/PizzaRecipe/PizzaRecipe.dart +++ b/lib/entities/PizzaRecipe/PizzaRecipe.dart @@ -57,7 +57,7 @@ class PizzaRecipe extends HiveObject { String name = recipe["name"]; String description = recipe["description"]; - YamlList ingredients = recipe["ingredients"];; + YamlList ingredients = recipe["ingredients"]; List newIngredients = ingredients.map((ingredient) => Ingredient(ingredient["name"], ingredient["unit"], ingredient["value"])).toList();