Skip to content

Commit

Permalink
Merge pull request #316 from TripInfoWeb/dev_icon
Browse files Browse the repository at this point in the history
Fix: 모임 아이템에서 아이콘이 표시되지 않는 오류 수정
  • Loading branch information
HyunJinNo authored Sep 17, 2024
2 parents b89e742 + 42720e9 commit 7dfbf79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/common/GatheringItemHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const GatheringItemHome = ({ data }: IGatheringItemHome) => {
{/* 모임 장소 */}
<div className={"flex h-4 min-w-[0.875rem] items-center"}>
<Image
src={`/location-icon.svg`}
src={`/gathering/location-icon.svg`}
alt="location-icon"
width={14}
height={14}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const GatheringUpdateDeleteButtonComponent = ({
수정
</Link>
<button
className="flex flex-row items-center gap-1 stroke-gray2 hover:fill-main hover:stroke-main hover:text-main"
className="flex flex-row items-center gap-1 fill-gray2 stroke-gray2 hover:fill-main hover:stroke-main hover:text-main"
onClick={() => deleteHandler()}
>
<DeleteIcon className="fill-inherit" />
Expand Down

0 comments on commit 7dfbf79

Please sign in to comment.