diff --git a/packages/features/bookings/components/EventTypeFilter.tsx b/packages/features/bookings/components/EventTypeFilter.tsx index 5a46284e10..741abf757b 100644 --- a/packages/features/bookings/components/EventTypeFilter.tsx +++ b/packages/features/bookings/components/EventTypeFilter.tsx @@ -2,7 +2,8 @@ import { useSession } from "next-auth/react"; import { Fragment, useState, useEffect } from "react"; import { useLocale } from "@calcom/lib/hooks/useLocale"; -import { trpc, RouterOutputs } from "@calcom/trpc/react"; +import type { RouterOutputs } from "@calcom/trpc/react"; +import { trpc } from "@calcom/trpc/react"; import { AnimatedPopover } from "@calcom/ui"; import { groupBy } from "../groupBy"; diff --git a/packages/ui/components/popover/AnimatedPopover.tsx b/packages/ui/components/popover/AnimatedPopover.tsx index 25e5dcd20c..079ea56749 100644 --- a/packages/ui/components/popover/AnimatedPopover.tsx +++ b/packages/ui/components/popover/AnimatedPopover.tsx @@ -2,6 +2,7 @@ import * as Popover from "@radix-ui/react-popover"; import React from "react"; import { classNames } from "@calcom/lib"; +import { Tooltip } from "@calcom/ui"; import { FiChevronDown } from "../icon"; @@ -43,18 +44,20 @@ export const AnimatedPopover = ({
-
- {text} - {count && count > 0 && ( -
{count}
- )} -
+ +
+ {text} + {count && count > 0 && ( +
{count}
+ )} +
+