Skip to content

Commit

Permalink
fix: remove custom coloring of toggables
Browse files Browse the repository at this point in the history
  • Loading branch information
dayvar14 committed Oct 15, 2024
1 parent 8e9d636 commit e2f6447
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions src/components/InitiativeList/InitiativeSubListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,17 +205,11 @@ const InitiativeSubListItem: React.FC<{
)}
{hasTurn && (
<FlagFilledIcon
className={clsx('filled colored medium', {
primary: isOwner,
})}
className={clsx('filled colored medium primary')}
/>
)}
{!hasTurn && (
<FlagUnfilledIcon
className={clsx('colored medium', {
primary: isOwner,
})}
/>
<FlagUnfilledIcon className={clsx('colored medium primary')} />
)}
</label>
{sceneContext.sceneMetadata.settings.main?.reactionsEnabled && (
Expand All @@ -241,15 +235,11 @@ const InitiativeSubListItem: React.FC<{
>
{hasReaction ? (
<ReactionFilledIcon
className={clsx('filled colored medium', {
primary: isOwner,
})}
className={clsx('colored medium primary')}
/>
) : (
<ReactionUnfilledIcon
className={clsx('colored medium', {
primary: isOwner,
})}
className={clsx('colored medium primary')}
/>
)}
</label>
Expand Down

0 comments on commit e2f6447

Please sign in to comment.