Skip to content

Commit

Permalink
fix: reaction colored black
Browse files Browse the repository at this point in the history
  • Loading branch information
dayvar14 committed Oct 16, 2024
1 parent ee4bfa8 commit 3c8cbbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/InitiativeList/InitiativeSubListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ const InitiativeSubListItem: React.FC<{
/>
)}
{!hasTurn && (
<FlagUnfilledIcon className={clsx('colored medium primary')} />
<FlagUnfilledIcon className={clsx('colored medium')} />
)}
</label>
{settingsContext.settings.main?.reactionsEnabled && (
Expand All @@ -277,11 +277,11 @@ const InitiativeSubListItem: React.FC<{
>
{hasReaction ? (
<ReactionFilledIcon
className={clsx('colored medium primary')}
className={clsx('filled colored medium primary')}
/>
) : (
<ReactionUnfilledIcon
className={clsx('colored medium primary')}
className={clsx('filled colored medium primary')}
/>
)}
</label>
Expand Down

0 comments on commit 3c8cbbb

Please sign in to comment.