Subscription finally working!

This commit is contained in:
2025-06-13 13:36:13 -05:00
parent b80bf9cd3f
commit 9b69027a85
6 changed files with 107 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ function Progress({
<ProgressPrimitive.Indicator
data-slot='progress-indicator'
className='bg-primary h-full w-full flex-1 transition-all'
style={{ transform: `translateX(-${100 - (value || 0)}%)` }}
style={{ transform: `translateX(-${100 - (value ?? 0)}%)` }}
/>
</ProgressPrimitive.Root>
);