Compare commits

..

No commits in common. "e9d8a331dd8ca51de003e2c91b0e706e5924df2a" and "783b26003aaf64886af54d8f6599add842f54fb3" have entirely different histories.

2 changed files with 2 additions and 5 deletions

View file

@ -246,7 +246,7 @@ async def create_bet(
async def get_my_bets(user: dict = Depends(get_current_user)):
"""Активные ставки пользователя."""
user_id = user["user_id"]
result = await asyncio.to_thread(_get_user_bets_raw, user_id)
result = await _get_user_bets_raw(user_id)
return {"text": result}
@ -254,7 +254,7 @@ async def get_my_bets(user: dict = Depends(get_current_user)):
async def get_bet_history(user: dict = Depends(get_current_user)):
"""История ставок за месяц + статистика."""
user_id = user["user_id"]
result = await asyncio.to_thread(_get_user_bet_history_raw, user_id)
result = await _get_user_bet_history_raw(user_id)
return {"text": result}

View file

@ -897,10 +897,7 @@ body::before {
.furtok-card {
height: 100%;
min-height: 100%;
flex-shrink: 0;
scroll-snap-align: start;
scroll-snap-stop: always;
position: relative;
display: flex;
align-items: center;