hubtype/botonic

chat bubble not showing

maxchen-000 opened this issue · 1 comments

I have some action that fetch some data from the backend api which take few seconds. While it's fetching the data, there's no chat bubble that show the user that botonic is doing something. So it's hard to tell from user perspective whether the chat is not working or it's doing something. Is there some setting that I need to set to turn the chat bubble or this is a bug? The example on the botonic site does show the chat bubble.

Basically, it's missing this:
image

Added the following to the botonicInit() function to fix the issue:
`
Botonic.addBotText("Please wait, this might take some time...")
Botonic.setTyping(true)

// api call code
`