Skip to content

Commit

Permalink
fix: value test circle
Browse files Browse the repository at this point in the history
  • Loading branch information
severinlandolt committed Oct 24, 2023
1 parent 5ca3e54 commit 87fd00a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const ProgressCircle = React.forwardRef<HTMLDivElement, ProgressCircleProps>((pr
: "stroke-tremor-brand-muted/50 dark:stroke-dark-tremor-brand-muted",
)}
/>
{value > 0 ? (
{value >= 0 ? (
<circle
r={normalizedRadius}
cx={radius}
Expand Down

0 comments on commit 87fd00a

Please sign in to comment.