Skip to content

Commit

Permalink
서버에서 정보 페이지 에러 문제 테스트 작업
Browse files Browse the repository at this point in the history
  • Loading branch information
ssssksss committed Jul 29, 2024
1 parent f727837 commit a618341
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 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 @@ -41,15 +41,15 @@ const InformationItem = ({

return (
<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
{/* <Image
className="-z-10 rounded-[0.875rem] dark:opacity-65"
src={image}
alt={"PostImage"}
fill={true}
style={{
objectFit: "cover",
}}
/>
/> */}
<div className="rounded-0 flex flex-row items-center justify-between px-5 pt-5">
{style !== "" ? (
<p
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 a618341

Please sign in to comment.