Fix linting warning

This commit is contained in:
GCHQDeveloper581 2026-04-19 17:04:48 +00:00
parent 2a577fbcec
commit d8cb1bb0d4
No known key found for this signature in database
GPG Key ID: 6222E059A3DF595C

View File

@ -327,7 +327,7 @@ export function help(input) {
export async function bake(input, recipeConfig) { export async function bake(input, recipeConfig) {
const recipe = new NodeRecipe(recipeConfig); const recipe = new NodeRecipe(recipeConfig);
const dish = ensureIsDish(input); const dish = ensureIsDish(input);
return await recipe.execute(dish); return await recipe.execute(dish);
} }