Layout mostly complete. Keep working.

This commit is contained in:
2026-01-09 16:43:43 -06:00
parent 267504e641
commit adb6a42039
23 changed files with 1353 additions and 111 deletions

View File

@ -34,7 +34,7 @@ class UserStatsResponse(BaseModel):
tier_name: str
house_fee: float
xp_to_next_tier: int
tier_progress: float
tier_progress_percent: float
total_wagered: float
total_won: float
net_profit: float
@ -418,7 +418,7 @@ async def get_my_stats(
tier_name=TIER_CONFIG[stats.tier][2],
house_fee=TIER_CONFIG[stats.tier][1],
xp_to_next_tier=stats.xp_to_next_tier(),
tier_progress=stats.tier_progress_percent(),
tier_progress_percent=stats.tier_progress_percent(),
total_wagered=stats.total_wagered,
total_won=stats.total_won,
net_profit=stats.net_profit,