We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db244b7 commit ca1d189Copy full SHA for ca1d189
1 file changed
src/pages/Home/OOTD/Feed/index.tsx
@@ -241,7 +241,8 @@ const Feed: React.FC<FeedProps> = ({ feed }) => {
241
<img className="button" onClick={handleRejectButtonClick} src={xBtn} />
242
{isLikeClicked ? (
243
<div className="button" onClick={handleLikeButtonClick}>
244
- <Heart isFilled={true} />
+ {/*Heart 컴포넌트 자체적으로 onClick 이벤트 핸들러가 없기에 이벤트 버블링으로 인한 부모 div의 onClick 이벤트가 실행 됨*/}
245
+ <Heart isFilled={true} />{' '}
246
</div>
247
) : (
248
0 commit comments