From fe7999a745764924b50f7d87fe65b40fe3d1e1a5 Mon Sep 17 00:00:00 2001 From: Aminejv Date: Tue, 25 Jan 2022 14:25:59 +0100 Subject: [PATCH] hide the intercom widget on the landing page --- pages/_app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pages/_app.js b/pages/_app.js index ec4dc58f..77c58625 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -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,