Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
glennmichael123 committed Nov 13, 2024
1 parent cd2fff7 commit aeafc0b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions resources/stores/payment.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import Stripe from 'stripe'
const apiUrl = `http://localhost:3008`

export const usePaymentStore = defineStore('payment', {
state: (): any => {
return {
paymentMethods: [] as Stripe.PaymentMethod[]
paymentMethods: [] as any[]
}
},

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

getters: {
getPaymentMethods(state): Stripe.PaymentMethod[] {
getPaymentMethods(state): any[] {
return state.paymentMethods
},
},
Expand Down

0 comments on commit aeafc0b

Please sign in to comment.