Skip to content

Commit

Permalink
Hotfix: dashboard bar percentage value
Browse files Browse the repository at this point in the history
  • Loading branch information
luistorres committed May 6, 2024
1 parent 4dde63a commit b1dd77d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/web-app/app/_ui/project/sale-status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ const ProgressBar = ({
</div>
<div className="relative z-0 flex">
<div
className={clsx(
'absolute top-0 flex flex-col items-start',
`left-[${percentageRounded}]`,
)}
className="absolute top-0 flex flex-col items-start"
style={{
left: percentageRounded,
}}
>
{percentageRounded === '100%' ? null : (
<>
Expand Down

0 comments on commit b1dd77d

Please sign in to comment.