Skip to main content

showChatBubble()

This function is the opposite of hideChatBubble. It will show the chat bubble if it's not showing already. If it is already showing, this function does nothing. You can experiment with it in the dev sandbox by pressing the button "Show SDK". Here is the function API and some example usage:

/**
* Will show the chat bubble in the bottom right corner of the page
*/
export const showChatBubble = async (): Promise<void>;

// Example usage:
const someFunction = () => {
showChatBubble();
}