diff --git a/packages/app-store/googlecalendar/components/ExistingGoogleCal.tsx b/packages/app-store/googlecalendar/components/ExistingGoogleCal.tsx deleted file mode 100644 index 22e609de85..0000000000 --- a/packages/app-store/googlecalendar/components/ExistingGoogleCal.tsx +++ /dev/null @@ -1,56 +0,0 @@ -import Link from "next/link"; - -import { WEBAPP_URL } from "@calcom/lib/constants"; -import { useLocale } from "@calcom/lib/hooks/useLocale"; -import { Icon } from "@calcom/ui"; - -const ExistingGoogleCal = ({ gCalInstalled, appName }: { gCalInstalled?: boolean; appName: string }) => { - const { t } = useLocale(); - - return gCalInstalled ? ( -
-
-
-
- -
-
- {t("google_calendar_is_connected")} -
-
- {t("requires_google_calendar")} -
-
-
-
-
-
- ) : ( -
-
-
-
- -
-
- {t("this_app_requires_google_calendar", { appName })} -
-
- <> - - {t("connect_google_calendar")} - - - -
-
-
-
-
-
- ); -}; - -export default ExistingGoogleCal;