From 7ab0e71108045f7b5cc8ba8b4a6ee454bb1db538 Mon Sep 17 00:00:00 2001 From: hexdev Date: Wed, 17 Jun 2026 15:46:58 +0700 Subject: [PATCH] style(keyboards): add emoji to device management button --- bot/keyboards/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/keyboards/client.py b/bot/keyboards/client.py index 6304bed..26c03ea 100644 --- a/bot/keyboards/client.py +++ b/bot/keyboards/client.py @@ -64,7 +64,7 @@ def subscription_controls( ) builder.row(InlineKeyboardButton(text=autorenewal_text, callback_data="toggle:autorenewal")) - builder.row(InlineKeyboardButton(text="Управление устройствами", callback_data="hwid_control")) + builder.row(InlineKeyboardButton(text="💻 Управление устройствами", callback_data="hwid_control")) builder.row(_return_to_menu_btn) return builder.as_markup()