fix: chat with us key handling

This commit is contained in:
sriram veeraghanta 2024-04-08 19:39:43 +05:30
parent 2ea6d70fac
commit c843a1757f
2 changed files with 23 additions and 23 deletions

View File

@ -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>

View File

@ -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}</>;