diff --git a/src/handlers/commands/cancel.rs b/src/handlers/commands/cancel.rs index e3445ad..f73de99 100644 --- a/src/handlers/commands/cancel.rs +++ b/src/handlers/commands/cancel.rs @@ -1,7 +1,10 @@ +use crate::handlers::markups::deletion_markup; use teloxide::{adaptors::Throttle, prelude::*}; /// Handles /cancel command when there's no active state pub async fn cancel(bot: Throttle, msg: Message) -> crate::Result<()> { - bot.send_message(msg.chat.id, "Nothing to cancel").await?; + bot.send_message(msg.chat.id, "Nothing to cancel") + .reply_markup(deletion_markup()) + .await?; Ok(()) }