diff --git a/apps/web/ee/components/TrialBanner.tsx b/apps/web/ee/components/TrialBanner.tsx index 6c6ccacb02..1ec16ceb99 100644 --- a/apps/web/ee/components/TrialBanner.tsx +++ b/apps/web/ee/components/TrialBanner.tsx @@ -27,6 +27,7 @@ const TrialBanner = () => { diff --git a/packages/ui/Button.tsx b/packages/ui/Button.tsx index 93a0dc864d..9898ac30e2 100644 --- a/packages/ui/Button.tsx +++ b/packages/ui/Button.tsx @@ -18,7 +18,7 @@ export type ButtonBaseProps = { }; export type ButtonProps = ButtonBaseProps & ( - | (Omit & { href: LinkProps["href"] }) + | (Omit & LinkProps) | (Omit & { href?: never }) );