Update dependencies. Fixed linting issues discovered after update.

This commit is contained in:
gbuomprisco
2025-01-28 10:41:05 +07:00
parent 01eeb8a6af
commit d799f54ede
31 changed files with 739 additions and 712 deletions

View File

@@ -18,7 +18,7 @@ const Progress: React.FC<
>
<ProgressPrimitive.Indicator
className="h-full w-full flex-1 bg-primary transition-all"
style={{ transform: `translateX(-${100 - (value ? value : 0)}%)` }}
style={{ transform: `translateX(-${100 - (value ?? 0)}%)` }}
/>
</ProgressPrimitive.Root>
);