From a21bdc939615439548b47fb551236ea59ab8f177 Mon Sep 17 00:00:00 2001 From: Masoud Hidden Date: Sun, 14 May 2023 22:55:01 +0330 Subject: [PATCH] [tgbot] Fix reply keyboard height --- 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 85c9867a..973ee97f 100644 --- a/web/service/tgbot.go +++ b/web/service/tgbot.go @@ -707,7 +707,7 @@ func (t *Tgbot) clientTelegramUserInfo(chatId int64, email string, messageID ... tu.KeyboardRow( tu.KeyboardButton("❌ Close Keyboard"), ), - ).WithIsPersistent() + ).WithIsPersistent().WithResizeKeyboard() t.SendMsgToTgbot(chatId, "👤 Select a telegram user:", keyboard) } }