diff --git a/Lombiq.HelpfulExtensions/Extensions/OrchardRecipeMigration/Services/OrchardExportToRecipeConverter.cs b/Lombiq.HelpfulExtensions/Extensions/OrchardRecipeMigration/Services/OrchardExportToRecipeConverter.cs index 4229066..f849991 100644 --- a/Lombiq.HelpfulExtensions/Extensions/OrchardRecipeMigration/Services/OrchardExportToRecipeConverter.cs +++ b/Lombiq.HelpfulExtensions/Extensions/OrchardRecipeMigration/Services/OrchardExportToRecipeConverter.cs @@ -73,7 +73,7 @@ await _contentConverters } var recipe = JObject.FromObject(new RecipeDescriptor())!; - recipe["steps"] = JObject.FromObject(new[] { new { name = "content", data = contentItems } }); + recipe["steps"] = new JsonArray(JObject.FromObject(new { name = "content", data = contentItems })); return recipe.ToString(); }