diff --git a/www/apps/resources/app/commerce-modules/fulfillment/module-options/page.mdx b/www/apps/resources/app/commerce-modules/fulfillment/module-options/page.mdx index 496eddfd51..732061125a 100644 --- a/www/apps/resources/app/commerce-modules/fulfillment/module-options/page.mdx +++ b/www/apps/resources/app/commerce-modules/fulfillment/module-options/page.mdx @@ -34,7 +34,7 @@ module.exports = defineConfig({ providers: [ { resolve: `@medusajs/fulfillment-manual`, - name: "manual", + id: "manual", options: { // provider options... }, @@ -49,5 +49,5 @@ module.exports = defineConfig({ The `providers` option is an array of objects that accept the following properties: - `resolve`: A string indicating either the package name of the module provider or the path to it relative to the `src` directory. -- `name`: A string indicating the provider's unique name. +- `id`: A string indicating the provider's unique name or ID. - `options`: An optional object of the module provider's options.