How can i minimize long pending of clocks display?
I use telegram bot sdk php in laravel, all works fine, but when I click on inline button I handle callback_data pending clocks not hidding. I try to reply with answer with answerCallBackQuery , but nothing changed. Please help me.
$inline_keyboard[] = [
[
'text' =>'20-30',
'callback_data' => 'age.2'
],
[
'text' =>'30-40',
'callback_data' => 'age.3'
]
];
$reply_markup = Telegram::replyKeyboardMarkup([
'inline_keyboard' => $inline_keyboard,
'resize_keyboard' => true
]);
$this->replyWithMessage([
'text' => 'How old are you?',
'reply_markup' => $reply_markup,
]);