From 4f7fcd7597b0787102ae0ca28f72d92727434698 Mon Sep 17 00:00:00 2001 From: Obad Zafar Date: Tue, 29 Apr 2025 17:45:05 +0500 Subject: [PATCH] docs: fix missing quotation mark in marketplace vendor tutorial curl request (#12315) --- .../resources/app/recipes/marketplace/examples/vendors/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx b/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx index a3989adbe8..05c3ea0416 100644 --- a/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx +++ b/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx @@ -885,7 +885,7 @@ You can now retrieve an authenticated token of the vendor admin. To do that, sen curl -X POST 'http://localhost:9000/auth/vendor/emailpass' \ -H 'Content-Type: application/json' \ --data-raw '{ - "email": "vendor@example.com, + "email": "vendor@example.com", "password": "supersecret" }' ```