Skip to content

Commit

Permalink
[TM-1531] fix LinearProgressBar error
Browse files Browse the repository at this point in the history
  • Loading branch information
dottyy committed Dec 11, 2024
1 parent 9e6ed7e commit 0466484
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/elements/Notification/FloatNotification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,7 @@ const FloatNotification = ({ data }: FloatNotificationProps) => {
Site: <b>{item.site}</b>
</Text>
<div className="mt-2 flex items-center gap-2">
<LinearProgressBar
variant="determinate"
value={parseInt(item.value)}
className="h-2 bg-success-40"
color="success-600"
/>
<LinearProgressBar value={parseInt(item.value)} className="h-2 bg-success-40" color="success-600" />
<Text variant="text-12-semibold" className="text-black">
{item.value}
</Text>
Expand Down

0 comments on commit 0466484

Please sign in to comment.