Skip to content

Commit

Permalink
fix(feed-column): correct sorting icon status (#2652)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonyiyi authored Jan 24, 2025
1 parent 7eb3fba commit 4045251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/renderer/src/modules/feed-column/list.shared.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ const SortButton = () => {
icon1={
order === "asc" ? tw`i-mgc-sort-ascending-cute-re` : tw`i-mgc-sort-descending-cute-re`
}
status={by === "count" ? "init" : "done"}
status={by === "count" ? "done" : "init"}
/>
</HoverCard.Trigger>

Expand Down

0 comments on commit 4045251

Please sign in to comment.