Skip to content

Commit

Permalink
Merge pull request #67 from feedback-forest/develop
Browse files Browse the repository at this point in the history
[Release] GA Test
  • Loading branch information
kyubumjang authored Oct 20, 2024
2 parents 6afd023 + ab466be commit 705d89d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,15 @@ const HomeLectureCard = (props: HomeLectureCardProps) => {
>
{heart ? (
<Image
className="home-lecture-card-like-filled-btn"
src={isHoveredFilled ? "/icons/like_filled.svg" : "/icons/like.svg"}
alt="heart"
width={36}
height={36}
/>
) : (
<Image
className="home-lecture-card-like-btn"
src={isHovered ? "/icons/like_filled.svg" : "/icons/like.svg"}
alt="heart"
width={36}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,15 @@ const PickLectureCard = (props: PickLectureCardProps) => {
>
{heart ? (
<Image
className="pick-lecture-card-like-filled-btn"
src={isHoveredFilled ? "/icons/like_filled.svg" : "/icons/like.svg"}
alt="heart"
width={36}
height={36}
/>
) : (
<Image
className="pick-lecture-card-like-btn"
src={isHovered ? "/icons/like_filled.svg" : "/icons/like.svg"}
alt="heart"
width={36}
Expand Down

0 comments on commit 705d89d

Please sign in to comment.