From adb3a8246ac8fba5948f4a1dc36963919f2c0afd Mon Sep 17 00:00:00 2001 From: Damien Thiesson Date: Mon, 7 Oct 2024 18:22:15 +1100 Subject: [PATCH] docs: fix import path in the workflow basic documentation (#9481) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The import is three levels up, but, the `src/api/workflow/route.ts` file is only two levels down from `src/workflow`. ![Screenshot 2024-10-06 at 6 09 38 PM](https://github.com/user-attachments/assets/0d94338f-a8db-406b-80fe-a64ffe500ca3) --- www/apps/book/app/basics/workflows/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/apps/book/app/basics/workflows/page.mdx b/www/apps/book/app/basics/workflows/page.mdx index fe07aedc80..758a47dacc 100644 --- a/www/apps/book/app/basics/workflows/page.mdx +++ b/www/apps/book/app/basics/workflows/page.mdx @@ -101,7 +101,7 @@ To execute the workflow, invoke it passing the Medusa container as a parameter. MedusaRequest, MedusaResponse, } from "@medusajs/framework/http" - import myWorkflow from "../../../workflows/hello-world" + import myWorkflow from "../../workflows/hello-world" export async function GET( req: MedusaRequest,