Hi,
how to use removeKeyboard ? i cant make it work
thanks
bot.command('help', (ctx) => {
return ctx.reply('This is available command: ', Markup.removeKeyboard(true))
})
Hey.
You have couple ways to do that:
bot.command('help', (ctx) => {
return ctx.reply('This is available command: ', Markup.removeKeyboard().extra())
})
bot.command('help', (ctx) => {
return ctx.reply('This is available command: ', Extra.markup(Markup.removeKeyboard()))
})
bot.command('help', (ctx) => {
return ctx.reply('This is available command: ', Extra.markup((m) => m.removeKeyboard()))
})
Most helpful comment
Hey.
You have couple ways to do that: