nko
All checks were successful
Deploy / CreateImage (push) Successful in 3m31s
Deploy / DeployService (push) Successful in 23s

This commit is contained in:
Nastya 2025-05-22 23:10:15 +03:00
parent aa917fe6ba
commit e2e391325b

@ -19,6 +19,8 @@ export const createTariffElements = (
) => { ) => {
console.log("start work createTariffElements") console.log("start work createTariffElements")
console.log("filteredTariffs ", filteredTariffs) console.log("filteredTariffs ", filteredTariffs)
console.log("user ", user)
console.log("user.isUserNko, ", user.isUserNko)
const tariffElements = filteredTariffs const tariffElements = filteredTariffs
.filter((tariff) => tariff.privileges.length > 0) .filter((tariff) => tariff.privileges.length > 0)
.map((tariff, index) => { .map((tariff, index) => {
@ -27,7 +29,7 @@ export const createTariffElements = (
discounts, discounts,
user.wallet.spent, user.wallet.spent,
[], [],
user.isUserNko, user.status === "nko",
user.userId, user.userId,
); );