docs: fixed constructor in add fulfillment provider (#3966)

Fixed the constructor in add fulfillment provider to remove the super parameters.

Closes #3947
This commit is contained in:
Shahed Nasser
2023-05-01 11:10:26 +03:00
committed by GitHub
parent 0c30d05cf3
commit cf371d3c84

View File

@@ -80,7 +80,7 @@ For example:
class MyFulfillmentService extends FulfillmentService {
// ...
constructor(container, options) {
super(container)
super()
// you can access options here
}
}