forked from github/plane
fix: chat with us key handling
This commit is contained in:
parent
2ea6d70fac
commit
c843a1757f
@ -142,6 +142,7 @@ export const WorkspaceHelpSection: React.FC<WorkspaceHelpSectionProps> = observe
|
||||
</span>
|
||||
</Link>
|
||||
))}
|
||||
{process.env.NEXT_PUBLIC_CRISP_ID && (
|
||||
<button
|
||||
type="button"
|
||||
onClick={handleCrispWindowShow}
|
||||
@ -152,6 +153,7 @@ export const WorkspaceHelpSection: React.FC<WorkspaceHelpSectionProps> = observe
|
||||
</div>
|
||||
<span className="text-xs">Chat with us</span>
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
<div className="px-2 pb-1 pt-2 text-[10px]">Version: v{packageJson.version}</div>
|
||||
</div>
|
||||
|
@ -18,10 +18,9 @@ const CrispWrapper: FC<ICrispWrapper> = (props) => {
|
||||
const { children, user } = props;
|
||||
|
||||
useEffect(() => {
|
||||
if (typeof window && user?.email) {
|
||||
if (typeof window && user?.email && process.env.NEXT_PUBLIC_CRISP_ID) {
|
||||
window.$crisp = [];
|
||||
window.CRISP_WEBSITE_ID = process.env.NEXT_PUBLIC_CRISP_ID;
|
||||
if (window.CRISP_WEBSITE_ID != null) {
|
||||
(function () {
|
||||
const d = document;
|
||||
const s = d.createElement("script");
|
||||
@ -33,7 +32,6 @@ const CrispWrapper: FC<ICrispWrapper> = (props) => {
|
||||
window.$crisp.push(["do", "chat:close"]);
|
||||
})();
|
||||
}
|
||||
}
|
||||
}, [user?.email]);
|
||||
|
||||
return <>{children}</>;
|
||||
|
Loading…
Reference in New Issue
Block a user