diff --git a/apps/formbricks-com/components/shared/BreakerCTA.tsx b/apps/formbricks-com/components/shared/BreakerCTA.tsx index 1a069f7d5e..304f5ecfb8 100644 --- a/apps/formbricks-com/components/shared/BreakerCTA.tsx +++ b/apps/formbricks-com/components/shared/BreakerCTA.tsx @@ -1,6 +1,7 @@ import { Button } from "@formbricks/ui"; import { useRouter } from "next/router"; import clsx from "clsx"; +import { usePlausible } from "next-plausible"; interface Props { teaser: string; @@ -13,6 +14,7 @@ interface Props { export default function BreakerCTA({ inverted = false, teaser, headline, subheadline, cta, href }: Props) { const router = useRouter(); + const plausible = usePlausible(); return (