Skip to content

Commit

Permalink
Update date of birth message in result wizard
Browse files Browse the repository at this point in the history
  • Loading branch information
devadathanmb committed Nov 17, 2023
1 parent 7116eea commit 98271e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/scenes/resultWizard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ const resultWizard = new Scenes.WizardScene<CustomContext>(
return await ctx.reply("Please enter a valid registration number");
}
ctx.scene.session.regisNo = regisNo.toUpperCase();
await ctx.reply("Please enter your Date of Birth (DD/MM/YYYY)");
await ctx.reply(
"Please enter your Date of Birth\n\nFormat: DD/MM/YYYY \n\nExample: 01/01/2000",
);
return ctx.wizard.next();
},
async (ctx) => {
Expand Down

0 comments on commit 98271e4

Please sign in to comment.