Skip to content

Commit

Permalink
HOTFIX: file name reference error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
HidenLee committed Aug 19, 2024
1 parent 2bf2294 commit eec2b61
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import styled from 'styled-components';

const HotelList = ({ hotels }) => {
const HoteLlist = ({ hotels }) => {
return (
<ListContainer>
{hotels.map((hotel, index) => (
Expand Down Expand Up @@ -79,4 +79,4 @@ const Price = styled.div`
color: #007BFF;
`;

export default HotelList;
export default HoteLlist;
4 changes: 2 additions & 2 deletions travelday-fe/src/pages/findPage/hotelSearch.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useNavigate } from 'react-router-dom';
import styled, { keyframes } from 'styled-components';
import AreaPopup from '../../components/shared/areaPopup';
import DateRangePopup from '../../components/shared/datePopup';
import HotelList from '../../components/findPage/hotelList';
import HoteLlist from '../../components/findPage/hoteLlist';
import useHotelStore from '../../store/useHotelStore'; // 올바른 스토어 가져오기

const HotelSearch = () => {
Expand Down Expand Up @@ -117,7 +117,7 @@ const HotelSearch = () => {
buttonText="검색"
dateRange={dates}
/>
<HotelList hotels={hotels} />
<HoteLlist hotels={hotels} />
</Container>
);
};
Expand Down

0 comments on commit eec2b61

Please sign in to comment.