Skip to content

Commit f045ba1

Browse files
committed
fix: adjust class order for HeartIcon in CommentsArea component
1 parent 1e2d8dc commit f045ba1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/Comments/CommentsArea.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ const CommentsArea = ({ postId, postOwnerId }: Props) => {
317317
onClick={() => likeComment(id, userVote)}
318318
>
319319
<HeartIcon
320-
className={`w-6 h-6 ${
320+
className={`h-6 w-6 ${
321321
userVote === "up"
322322
? "fill-red-400"
323323
: "fill-neutral-400 dark:fill-neutral-600"

0 commit comments

Comments
 (0)