docs: fix identifier in tax provider documentation (#4488)

This commit is contained in:
Shahed Nasser
2023-07-10 18:03:19 +03:00
committed by GitHub
parent d363da2b72
commit 8eefd79947

View File

@@ -81,7 +81,7 @@ Add the static property `identifier` in your tax provider class:
```ts title=src/services/my-tax.ts
class MyTaxService extends AbstractTaxService {
static identifer = "my-tax"
static identifier = "my-tax"
// ...
}
```