Skip to content

Commit aeafc0b

Browse files
chore: wip
1 parent cd2fff7 commit aeafc0b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

resources/stores/payment.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
import Stripe from 'stripe'
21
const apiUrl = `http://localhost:3008`
32

43
export const usePaymentStore = defineStore('payment', {
54
state: (): any => {
65
return {
7-
paymentMethods: [] as Stripe.PaymentMethod[]
6+
paymentMethods: [] as any[]
87
}
98
},
109

@@ -23,7 +22,7 @@ export const usePaymentStore = defineStore('payment', {
2322
},
2423

2524
getters: {
26-
getPaymentMethods(state): Stripe.PaymentMethod[] {
25+
getPaymentMethods(state): any[] {
2726
return state.paymentMethods
2827
},
2928
},

0 commit comments

Comments
 (0)