This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Description
Hello,
I'm trying to display multiple messages using bot.replyWithTyping() as follows -
bot.replyWithTyping(message,'First!');
bot.replyWithTyping(message,'Second!');
bot.replyWithTyping(message,'Third!');
The result I see in the Messenger App is as below -
First!
Third!
Second!
Any idea why the order is messed up? I also tried using bot.reply() but no luck.