Skip to content

Feature/ba 2468 payment methods management #263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Prev Previous commit
Next Next commit
Fix type
  • Loading branch information
Lúcio BJ committed Jun 2, 2025
commit 0ff310fdc0e610677b6b620f64550e100666debb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { FC } from 'react'

import { Box, Typography } from '@mui/material'

import { StripePaymentMethod } from '../../types'
import { IStripePaymentMethod } from '../../types'

const PaymentMethodDisplay: FC<{
pm: StripePaymentMethod
pm: IStripePaymentMethod
getCardIcon: (brand?: string) => JSX.Element
}> = ({ pm, getCardIcon }) => (
<Box sx={{ display: 'flex', alignItems: 'center' }}>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Stripe, StripeElements } from '@stripe/stripe-js'

import { StripePaymentMethod } from '../../types'
import { IStripePaymentMethod } from '../../types'

export interface PaymentDropdownProps {
paymentMethods: StripePaymentMethod[]
paymentMethods: IStripePaymentMethod[]
selectedPaymentMethodId: string
setSelectedPaymentMethodId: (id: string) => void
stripe: Stripe
Expand Down
Loading