From 35e58d336089686bd72dc425ce1df509a8e67b0a Mon Sep 17 00:00:00 2001 From: user Date: Wed, 28 Feb 2024 23:47:09 +0300 Subject: [PATCH] dev@locazia: fix misprint --- app/bot/routers/index.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/bot/routers/index.py b/app/bot/routers/index.py index 52dd4f4..6b57647 100644 --- a/app/bot/routers/index.py +++ b/app/bot/routers/index.py @@ -35,15 +35,15 @@ async def t_home_menu(__msg, **extra): [ { 'text': f"{wallets[i]['name']}", - 'url': f"initTonconnect_{wallets[i]['app_name']}" + 'callback_data': f"initTonconnect_{wallets[i]['app_name']}" } if i < len(wallets) else None, { 'text': f"{wallets[i + 1]['name']}", - 'url': f"initTonconnect_{wallets[i + 1]['app_name']}" + 'callback_data': f"initTonconnect_{wallets[i + 1]['app_name']}" } if i + 1 < len(wallets) else None, { 'text': f"{wallets[i + 2]['name']}", - 'url': f"initTonconnect_{wallets[i + 2]['app_name']}" + 'callback_data': f"initTonconnect_{wallets[i + 2]['app_name']}" } if i + 2 < len(wallets) else None, ] for i in range(0, len(wallets), 3)