diff --git a/apps/scandic-web/components/HotelReservation/HotelCardListing/index.tsx b/apps/scandic-web/components/HotelReservation/HotelCardListing/index.tsx index 5e550a2fa..5c011c436 100644 --- a/apps/scandic-web/components/HotelReservation/HotelCardListing/index.tsx +++ b/apps/scandic-web/components/HotelReservation/HotelCardListing/index.tsx @@ -2,15 +2,11 @@ import { useSearchParams } from "next/navigation" import { useSession } from "next-auth/react" import { useEffect, useMemo, useRef } from "react" -import { useIntl } from "react-intl" - -import { AlertTypeEnum } from "@scandic-hotels/trpc/types/alertType" import { useBookingCodeFilterStore } from "@/stores/bookingCode-filter" import { useHotelFilterStore } from "@/stores/hotel-filters" import { useHotelsMapStore } from "@/stores/hotels-map" -import Alert from "@/components/TempDesignSystem/Alert" import { BackToTopButton } from "@/components/TempDesignSystem/BackToTopButton" import { useScrollToTop } from "@/hooks/useScrollToTop" import { isValidClientSession } from "@/utils/clientSession" @@ -37,7 +33,6 @@ export default function HotelCardListing({ const searchParams = useSearchParams() const activeFilters = useHotelFilterStore((state) => state.activeFilters) const setResultCount = useHotelFilterStore((state) => state.setResultCount) - const intl = useIntl() const { activeHotel } = useHotelsMapStore() const { showBackToTop, scrollToTop } = useScrollToTop({ threshold: 490 }) const activeCardRef = useRef(null) @@ -142,18 +137,6 @@ export default function HotelCardListing({ )) : null} - {!hotels?.length && activeFilters ? ( - - ) : null} {showBackToTop && ( )}