[WEB-843] fix: chat with us option not woking in command k modal. (#4080)
This commit is contained in:
parent
265ce7778a
commit
f1530688f8
1 changed files with 3 additions and 1 deletions
|
|
@ -69,7 +69,9 @@ export const CommandPaletteHelpActions: React.FC<Props> = (props) => {
|
|||
<Command.Item
|
||||
onSelect={() => {
|
||||
closePalette();
|
||||
(window as any)?.$crisp.push(["do", "chat:open"]);
|
||||
if (window) {
|
||||
window.$crisp.push(["do", "chat:show"]);
|
||||
}
|
||||
}}
|
||||
className="focus:outline-none"
|
||||
>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue