Skip to content

Commit

Permalink
Fix color format
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-drozd-it committed Apr 25, 2024
1 parent e8012b6 commit 5b80622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/countdowntimer/CountdownTimerChip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const CountdownTimerChip = (): JSX.Element => {
indicatorColor = '#FFA500';
break;
case percentage < 20:
indicatorColor = 'red';
indicatorColor = '#FF0000';
break;
default:
indicatorColor = backgroundColor;
Expand Down

0 comments on commit 5b80622

Please sign in to comment.