* posthog version upgrade and calai banner tracking * disable posthog for EU * bunch more posthog tracking * Revert yarn.lock changes * add posthog package yarn changes * fix: add missing posthog import and fix lint warning in MemberInvitationModal Co-Authored-By: amit@cal.com <samit91848@gmail.com> * fix: type check * cubic fixes * refactor * remove ui playground --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import dynamic from "next/dynamic";
|
|
|
|
const DynamicPostHogPageView = dynamic(() => import("./PostHogPageView"), {
|
|
ssr: false,
|
|
});
|
|
|
|
export default DynamicPostHogPageView;
|