nicolium: fix progress bar

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-04-09 12:16:16 +00:00
parent a8ed5e3c37
commit cc8c4a73c5

View File

@@ -17,7 +17,7 @@ const ProgressBar: React.FC<IProgressBar> = ({ progress, size = 'md' }) => {
const styles = useSpring({
from: { width: '0%' },
to: { width: `${progress}%` },
to: { width: `${progress * 100}%` },
reset: true,
immediate: reduceMotion,
});