diff --git a/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx b/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx index f068878e34..4b165cc9ec 100644 --- a/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx +++ b/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx @@ -243,7 +243,7 @@ function EventTypeSingleLayout({ }>
- +
diff --git a/packages/ui/v2/core/layouts/BookingLayout.tsx b/packages/ui/v2/core/layouts/BookingLayout.tsx index 5881bdbef5..6ce5e35f35 100644 --- a/packages/ui/v2/core/layouts/BookingLayout.tsx +++ b/packages/ui/v2/core/layouts/BookingLayout.tsx @@ -42,7 +42,7 @@ export default function BookingLayout({
- +
diff --git a/packages/ui/v2/core/navigation/tabs/VerticalTabs.tsx b/packages/ui/v2/core/navigation/tabs/VerticalTabs.tsx index 3d85409baa..2b0e4b7ece 100644 --- a/packages/ui/v2/core/navigation/tabs/VerticalTabs.tsx +++ b/packages/ui/v2/core/navigation/tabs/VerticalTabs.tsx @@ -1,16 +1,22 @@ import { FC } from "react"; +import { classNames } from "@calcom/lib"; + import VerticalTabItem, { VerticalTabItemProps } from "./VerticalTabItem"; export interface NavTabProps { tabs: VerticalTabItemProps[]; children?: React.ReactNode; className?: string; + sticky?: boolean; } -const NavTabs: FC = ({ tabs, className = "", ...props }) => { +const NavTabs: FC = ({ tabs, className = "", sticky, ...props }) => { return ( -