Skip to content

Commit

Permalink
Merge pull request #376 from TripInfoWeb/dev_refactoring
Browse files Browse the repository at this point in the history
Fix: 추천 정보 informationId 값 오류 수정
  • Loading branch information
HyunJinNo authored Sep 22, 2024
2 parents 1941551 + 29142c1 commit 7de57f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/informations/detail/RecommendationList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const RecommendationList = ({ data }: Props) => {
{data.recommendInformation.map((value, index) => (
<InformationItemContainer
key={index}
informationId={index + 1}
informationId={value.informationId}
categoryName={value.categoryName}
isBookMark={value.isBookMark}
isLike={value.isLike}
Expand Down

0 comments on commit 7de57f8

Please sign in to comment.