mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
To test this, set the `useNextBubble` value to `true` in the
localstorage. Here's a quick command to run in the console
```js
localStorage.setItem('useNextBubble', true)
```
```js
localStorage.setItem('useNextBubble', false)
```
---------
Co-authored-by: Pranav <pranavrajs@gmail.com>
10 lines
316 B
JavaScript
10 lines
316 B
JavaScript
export const LOCAL_STORAGE_KEYS = {
|
|
DISMISSED_UPDATES: 'dismissedUpdates',
|
|
WIDGET_BUILDER: 'widgetBubble_',
|
|
DRAFT_MESSAGES: 'draftMessages',
|
|
COLOR_SCHEME: 'color_scheme',
|
|
DISMISSED_LABEL_SUGGESTIONS: 'labelSuggestionsDismissed',
|
|
MESSAGE_REPLY_TO: 'messageReplyTo',
|
|
USE_NEXT_BUBBLE: 'useNextBubble',
|
|
};
|