Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { _generateMetadata, getTranslate } from "app/_utils";

import SystemBlocklistView from "@calcom/features/ee/admin/pages/settings/blocklist";
import SystemBlocklistView from "@calcom/web/modules/ee/admin/pages/settings/blocklist";
import SettingsHeader from "@calcom/features/settings/appDir/SettingsHeader";

export const generateMetadata = async () =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useMemo } from "react";
import { z } from "zod";

import dayjs from "@calcom/dayjs";
import { useBookingLocation } from "@calcom/features/bookings/hooks";
import { useBookingLocation } from "@calcom/web/modules/bookings/hooks/useBookingLocation";
import { shouldShowFieldInCustomResponses } from "@calcom/lib/bookings/SystemField";
import { formatPrice } from "@calcom/lib/currencyConversions";
import { getPlaceholderAvatar } from "@calcom/lib/defaultAvatarImage";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { TFunction } from "i18next";
import { useMemo } from "react";

import { useBookingLocation } from "@calcom/features/bookings/hooks";
import { useBookingLocation } from "@calcom/web/modules/bookings/hooks/useBookingLocation";
import type { BookingStatus } from "@calcom/prisma/enums";
import { bookingMetadataSchema } from "@calcom/prisma/zod-utils";

Expand Down
1 change: 0 additions & 1 deletion packages/features/bookings/hooks/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export { useBookerUrl, useEmbedBookerUrl } from "./useBookerUrl";
export { useBookingLocation } from "./useBookingLocation";
Loading