Skip to content

Commit

Permalink
fix wrong color
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdcastro committed Jun 13, 2024
1 parent ee5b1e0 commit 333e72a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/app/components/LogsDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ export const LogsDisplay = ({ title, preconfTxns, isCurrent }) => {
<Badge
variant="default"
className={cn({
"bg-yellow-400": !pre.included,
"bg-green-600": pre.included,
"bg-yellow-400": !(!isCurrent && pre.included),
"bg-green-600": !isCurrent && pre.included,
})}
>
{!isCurrent && pre.included
Expand Down

0 comments on commit 333e72a

Please sign in to comment.