# MD for: https://www.mercadopago.com.uy/developers/pt/docs/checkout-bricks/payment-brick/advanced-features/default-payment-method.md \# Default payment method It is possible to initialize Payment Brick with a payment option already open. To configure a default payment method, use the configuration below. * [javascript ](#editor%5F1) * [react-jsx ](#editor%5F2) javascript react-jsx ``` settings = { ..., customization: { ..., visual: { ..., defaultPaymentOption: { walletForm: true, // creditCardForm: true, // debitCardForm: true, // savedCardForm: 'card id sent in the initialization', // ticketForm: true, }, }, } } ``` Copiar ``` const customization = { visual: { defaultPaymentOption: { walletForm: true, // creditCardForm: true, // debitCardForm: true, // savedCardForm: 'card id sent in the initialization', // ticketForm: true, }, } }; ``` Copiar \> WARNING > > Attention > > It is not possible to enable more than one default payment method, so use only one property inside the \`defaultPaymentOption\` object. !\[default-payment-option-all\](https://www.mercadopago.com.uy/checkout-bricks/default-payment-option-all-en-v1.png)