add multi-crypto payment buttons to cart

This commit is contained in:
2026-09-05 18:55:58 +02:00
parent 3b6323658e
commit 302c3729c4
5 changed files with 41 additions and 17 deletions
+6
View File
@@ -0,0 +1,6 @@
import { PaymentMethod } from '../modules/payment/types/PaymentMethod';
export const paymentMethodLabel: Record<PaymentMethod, string> = {
[PaymentMethod.Xmr]: 'XMR',
[PaymentMethod.Btc]: 'BTC'
};