Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/ArticleMenu/ArticleMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const ArticleMenu = ({
}}
>
<HeartIcon
className={`w-6 h-6${
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are these swapped automatically? I just looked at another PR and it was the same?

className={`h-6 w-6 ${
data?.currentUserLiked
? "fill-red-400"
: "fill-neutral-400 dark:fill-neutral-600"
Expand All @@ -162,7 +162,7 @@ const ArticleMenu = ({
}}
>
<BookmarkIcon
className={`w-6 h-6${
className={`h-6 w-6 ${
data?.currentUserBookmarked
? "fill-blue-400"
: "fill-neutral-400 dark:fill-neutral-600"
Expand Down
2 changes: 1 addition & 1 deletion components/ArticlePreview/ArticlePreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const ArticlePreview: NextPage<Props> = ({
}
>
<BookmarkIcon
className={`w-6 h-6${
className={`h-6 w-6 ${
bookmarked
? "fill-blue-400"
: "fill-neutral-400 dark:fill-neutral-600"
Expand Down