add tarif operation

This commit is contained in:
smanylov
2026-02-19 17:45:40 +07:00
parent 048e1269ad
commit c7c78e303c
3 changed files with 8 additions and 7 deletions
@@ -56,7 +56,7 @@ export default function PaymentTubBuyTokens() {
setIsProcessing(true);
try {
const response = await yooKasaCreatePayment(value, tokensBundle);
const response = await yooKasaCreatePayment(value, tokensBundle, 'TOKEN');
if (response) {
window.open(response, '_blank', 'noopener,noreferrer');
closeModal(false);
+1 -1
View File
@@ -56,7 +56,7 @@ export default function PaymentTabTariffs() {
setIsProcessing(true);
try {
const response = await yooKasaCreatePayment(value, tariff);
const response = await yooKasaCreatePayment(value, tariff, 'TARIFF');
if (response) {
window.open(response, '_blank', 'noopener,noreferrer');
closeModal(false);