docs: Fix incorrect syntax in code snippets on Create Payment Provider page. (#12012)

This commit is contained in:
Kunut Mix Chirdchai
2025-04-11 17:41:49 +07:00
committed by GitHub
parent 7ae02194f4
commit ff9d1624b2

View File

@@ -301,7 +301,7 @@ export abstract class AbstractPaymentProvider<TConfig = Record<string, unknown>>
* )
*
* return {
* id: response.id
* id: response.id,
* data: response,
* }
* }
@@ -341,7 +341,6 @@ export abstract class AbstractPaymentProvider<TConfig = Record<string, unknown>>
* await this.client.cancelPayment(externalId)
* return {}
* }
* }
*
* // ...
* }