Skip to content

Commit

Permalink
Merge pull request #151 from TripInfoWeb/dev_etc
Browse files Browse the repository at this point in the history
빌드 에러 수정
  • Loading branch information
ssssksss authored Jul 29, 2024
2 parents 400e6ca + c23f487 commit 80a2910
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/common/InformationItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface Props {
categoryId: number;
informationId: number;
title: string;
// image: string;
image: string;
address: string;
likeCount: number;
viewCount: number;
Expand All @@ -19,7 +19,7 @@ const InformationItem = ({
categoryId,
informationId,
title,
// image,
image,
address,
likeCount,
viewCount,
Expand All @@ -43,7 +43,7 @@ const InformationItem = ({
<div className="relative flex h-[19.6875rem] w-[19.125rem] flex-col justify-between rounded-2xl outline outline-1 outline-gray3 duration-300 hover:outline-main dark:outline-slate-400">
{/* <Image
className="-z-10 rounded-[0.875rem] dark:opacity-65"
src={image}
src={image || "/next.svg"}
alt={"PostImage"}
fill={true}
style={{
Expand Down
2 changes: 1 addition & 1 deletion src/components/informations/list/InformationList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const InformationList = async ({
categoryId={categoryId}
informationId={value.informationId}
title={value.title}
// image={value.thumbNailImage}
image={value.thumbNailImage}
address={
value.zoneCategoryParentName + ", " + value.zoneCategoryChildName
}
Expand Down

0 comments on commit 80a2910

Please sign in to comment.