From 121a983f31dcd88191fe303e5993925e1e86f834 Mon Sep 17 00:00:00 2001 From: mathieudutour Date: Fri, 6 Sep 2019 17:12:52 +0200 Subject: [PATCH] fix lint --- app/src/lib/stores/app-store.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app/src/lib/stores/app-store.ts b/app/src/lib/stores/app-store.ts index 3a6228842..09ac73133 100644 --- a/app/src/lib/stores/app-store.ts +++ b/app/src/lib/stores/app-store.ts @@ -5033,11 +5033,16 @@ export class AppStore extends TypedBaseStore { this.isShowing3DSecure = true this.emitUpdate() - const { error } = await stripe.handleCardPayment(result.paymentIntentSecret) + const { error } = await stripe.handleCardPayment( + result.paymentIntentSecret + ) this.isShowing3DSecure = false if (!error) { - await this.accountsStore.unlockKactusForAccount(user, options.enterprise) + await this.accountsStore.unlockKactusForAccount( + user, + options.enterprise + ) } } else if (result.ok) { await this.accountsStore.unlockKactusForAccount(user, options.enterprise)