From f7872407d6fe9b53893aa495c44cd12b15b7e93c Mon Sep 17 00:00:00 2001 From: nistootsin <104831639+nistootsin@users.noreply.github.com> Date: Sat, 22 Mar 2025 16:20:42 +0330 Subject: [PATCH] - fix a mistake in the email prompt message --- web/service/tgbot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/service/tgbot.go b/web/service/tgbot.go index bad683c7..7b56154c 100644 --- a/web/service/tgbot.go +++ b/web/service/tgbot.go @@ -1171,7 +1171,7 @@ func (t *Tgbot) answerCallback(callbackQuery *telego.CallbackQuery, isAdmin bool tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.use_default")).WithCallbackData("add_client_default_info"), ), ) - prompt_message := t.I18nBot("tgbot.messages.id_prompt", "ClientId=="+client_Email) + prompt_message := t.I18nBot("tgbot.messages.email_prompt", "ClientEmail=="+client_Email) t.SendMsgToTgbot(chatId, prompt_message, cancel_btn_markup) case "add_client_ch_default_id": userStates[chatId] = "awaiting_id"