From cf371d3c848189fd558086d2068007b724154148 Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Mon, 1 May 2023 11:10:26 +0300 Subject: [PATCH] docs: fixed constructor in add fulfillment provider (#3966) Fixed the constructor in add fulfillment provider to remove the super parameters. Closes #3947 --- .../carts-and-checkout/backend/add-fulfillment-provider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/modules/carts-and-checkout/backend/add-fulfillment-provider.md b/docs/content/modules/carts-and-checkout/backend/add-fulfillment-provider.md index 9775cb4c9a..e570ef8470 100644 --- a/docs/content/modules/carts-and-checkout/backend/add-fulfillment-provider.md +++ b/docs/content/modules/carts-and-checkout/backend/add-fulfillment-provider.md @@ -80,7 +80,7 @@ For example: class MyFulfillmentService extends FulfillmentService { // ... constructor(container, options) { - super(container) + super() // you can access options here } }