From d338fee8a90d46c10375a129dc38ede2839f9e24 Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Wed, 11 Sep 2024 16:34:08 +0200 Subject: [PATCH] feat(Sw-251): rename file --- components/HotelReservation/SelectHotel/HotelFilter/index.tsx | 2 +- .../selectHotel/{hotelFilters.ts => hotelFiltersProps.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename types/components/hotelReservation/selectHotel/{hotelFilters.ts => hotelFiltersProps.ts} (100%) diff --git a/components/HotelReservation/SelectHotel/HotelFilter/index.tsx b/components/HotelReservation/SelectHotel/HotelFilter/index.tsx index a3a993aee..52bf5a7fe 100644 --- a/components/HotelReservation/SelectHotel/HotelFilter/index.tsx +++ b/components/HotelReservation/SelectHotel/HotelFilter/index.tsx @@ -4,7 +4,7 @@ import { useIntl } from "react-intl" import styles from "./hotelFilter.module.css" -import { HotelFiltersProps } from "@/types/components/hotelReservation/selectHotel/hotelFilters" +import { HotelFiltersProps } from "@/types/components/hotelReservation/selectHotel/hotelFiltersProps" export default function HotelFilter({ filters }: HotelFiltersProps) { const intl = useIntl() diff --git a/types/components/hotelReservation/selectHotel/hotelFilters.ts b/types/components/hotelReservation/selectHotel/hotelFiltersProps.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/hotelFilters.ts rename to types/components/hotelReservation/selectHotel/hotelFiltersProps.ts