Omit "Checkout with" text in payment list

Is it possible to omit “Checkout with” text in payment list?

I tried with custom fields. It is working but I still wonder if there is simpler way.

Hi there,

This is the only way to edit this, using our payment-methods-list-item component override.

Cheers!

I found the more simple solution:

document.addEventListener('snipcart.ready', () => {
Snipcart.api.session.setLanguage('en', {
"payment": {
	"checkout_with": "",
}
});
});