Skip to content

Commit

Permalink
fix: resolve issue with mocked customer creation (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
anbraten authored Nov 8, 2023
1 parent be1bfb9 commit 5aaa99f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/server/src/payment_providers/mocked.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export class Mocked implements PaymentProvider {

// eslint-disable-next-line @typescript-eslint/require-await
async createCustomer(customer: Customer): Promise<Customer> {
customer.paymentProviderId = 'mocked-123';
return customer;
}

Expand Down

0 comments on commit 5aaa99f

Please sign in to comment.