Skip to content

Commit

Permalink
1051: fix loss of precision error in vocabulary list
Browse files Browse the repository at this point in the history
  • Loading branch information
lunars97 committed Jan 20, 2025
1 parent df8b622 commit 45dbe0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ExerciseHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const ExerciseHeader = ({
<>
{showProgress && (
<ProgressBar
progress={numberOfWords > 0 ? currentWord / numberOfWords : 0}
animatedValue={numberOfWords > 0 ? currentWord / numberOfWords : 0}
color={theme.colors.progressIndicator}
disabledColor={theme.colors.disabled}
/>
Expand Down

0 comments on commit 45dbe0e

Please sign in to comment.