diff --git a/routes/api/recipes/create/index.ts b/routes/api/recipes/create/index.ts index 22028ad..9456743 100644 --- a/routes/api/recipes/create/index.ts +++ b/routes/api/recipes/create/index.ts @@ -246,7 +246,7 @@ export const handler: Handlers = { processCreateRecipeFromUrl({ fetchUrl, streamResponse }).then((article) => { log.debug("created article from link", { article }); }).catch((err) => { - streamResponse.enqueue(`error creating article: ${err}`); + streamResponse.enqueue(`error creating recipe: ${err}`); log.error(err); }).finally(() => { streamResponse.cancel();