Update files

This commit is contained in:
glpshchn 2025-12-07 05:37:42 +03:00
parent 1f386c32a1
commit d4f0e57370
1 changed files with 0 additions and 17 deletions

View File

@ -97,23 +97,6 @@ export default function MonthlyLadder({ user }) {
}
}
const getPrize = (rank) => {
switch (rank) {
case 1:
return '$50'
case 2:
return '$30'
case 3:
return '$15'
case 4:
return '$5'
case 5:
return '$5'
default:
return null
}
}
const formatTickets = (tickets) => {
return tickets?.toLocaleString('ru-RU') || '0'
}