diff --git a/packages/nicolium/src/components/ui/progress-bar.tsx b/packages/nicolium/src/components/ui/progress-bar.tsx index 9c991e932..8f55067db 100644 --- a/packages/nicolium/src/components/ui/progress-bar.tsx +++ b/packages/nicolium/src/components/ui/progress-bar.tsx @@ -16,9 +16,7 @@ const ProgressBar: React.FC = ({ progress, size = 'md' }) => { const { reduceMotion } = useSettings(); const styles = useSpring({ - from: { width: '0%' }, to: { width: `${Math.min(progress * 100, 100)}%` }, - reset: true, immediate: reduceMotion, });