From 600ccbcf1cd5e82225b0598e42030145fa1f21f7 Mon Sep 17 00:00:00 2001 From: ditsuke Date: Tue, 26 Sep 2023 12:30:43 +0530 Subject: [PATCH] chore(ux/faculty-feedback): Add cancellation hint to input error message --- src/states/state-handlers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/states/state-handlers.ts b/src/states/state-handlers.ts index 008ef4c..b2ea6c5 100644 --- a/src/states/state-handlers.ts +++ b/src/states/state-handlers.ts @@ -316,7 +316,7 @@ export const handleFacultyFeedbackRating = async (ctx: BotHandlerContext) => { ) { await ctx.bot.sendMessage( whatsappPayload.sender, - "Invalid input. Please try again." + "Invalid input. Please try again, or type *cancel* to cancel." ); return updatedUser; }