diff --git a/app/components/booking/booking-assets-column.tsx b/app/components/booking/booking-assets-column.tsx index 22e05cbb9..e6eaaba95 100644 --- a/app/components/booking/booking-assets-column.tsx +++ b/app/components/booking/booking-assets-column.tsx @@ -5,7 +5,7 @@ import { ChevronDownIcon } from "@radix-ui/react-icons"; import { useLoaderData } from "@remix-run/react"; import { useBookingStatusHelpers } from "~/hooks/use-booking-status"; import { useUserRoleHelper } from "~/hooks/user-user-role-helper"; -import type { BookingWithCustodians } from "~/routes/_layout+/bookings"; +import type { BookingWithCustodians } from "~/modules/booking/types"; import type { AssetWithBooking } from "~/routes/_layout+/bookings.$bookingId.add-assets"; import { tw } from "~/utils/tw"; import { groupBy } from "~/utils/utils"; diff --git a/app/components/booking/kit-row-actions-dropdown.tsx b/app/components/booking/kit-row-actions-dropdown.tsx index fa6bb761e..19633bf82 100644 --- a/app/components/booking/kit-row-actions-dropdown.tsx +++ b/app/components/booking/kit-row-actions-dropdown.tsx @@ -1,7 +1,7 @@ import type { Kit } from "@prisma/client"; import { Form, useLoaderData } from "@remix-run/react"; import { useBookingStatusHelpers } from "~/hooks/use-booking-status"; -import type { BookingWithCustodians } from "~/routes/_layout+/bookings"; +import type { BookingWithCustodians } from "~/modules/booking/types"; import { tw } from "~/utils/tw"; import { TrashIcon, VerticalDotsIcon } from "../icons/library"; import { Button } from "../shared/button"; diff --git a/app/components/booking/remove-asset-from-booking.tsx b/app/components/booking/remove-asset-from-booking.tsx index 25a0842d4..b520f2033 100644 --- a/app/components/booking/remove-asset-from-booking.tsx +++ b/app/components/booking/remove-asset-from-booking.tsx @@ -12,7 +12,7 @@ import { AlertDialogTrigger, } from "~/components/shared/modal"; import { useBookingStatusHelpers } from "~/hooks/use-booking-status"; -import type { BookingWithCustodians } from "~/routes/_layout+/bookings"; +import type { BookingWithCustodians } from "~/modules/booking/types"; import { isFormProcessing } from "~/utils/form"; import { tw } from "~/utils/tw"; import { Form } from "../custom-form"; diff --git a/app/components/dynamic-dropdown/dynamic-dropdown.tsx b/app/components/dynamic-dropdown/dynamic-dropdown.tsx index e82ac5258..70c958fab 100644 --- a/app/components/dynamic-dropdown/dynamic-dropdown.tsx +++ b/app/components/dynamic-dropdown/dynamic-dropdown.tsx @@ -161,7 +161,7 @@ export default function DynamicDropdown({