hide the intercom widget on the landing page

This commit is contained in:
Aminejv 2022-01-25 14:25:59 +01:00 committed by Martina
parent 5ebfb163e7
commit fe7999a745

View File

@ -16,6 +16,8 @@ const INTERCOM_APP_ID = "jwgbampk";
const CustomIntercomConfig = () => {
const { boot } = useIntercom();
React.useLayoutEffect(() => {
//NOTE(amine): Don't initiate the intercom widget on the landing page
if (typeof window !== "undefined" && window.location.pathname === "/") return;
boot({
alignment: "left",
horizontalPadding: 23,