diff --git a/packages/web/components/templates/article/Article.tsx b/packages/web/components/templates/article/Article.tsx index c5c9780af..e54402b18 100644 --- a/packages/web/components/templates/article/Article.tsx +++ b/packages/web/components/templates/article/Article.tsx @@ -50,9 +50,8 @@ export function Article(props: ArticleProps): JSX.Element { await props.articleMutations.articleReadingProgressMutation({ id: props.articleId, - // // round reading progress to 100% if more than that readingProgressPercent: clampToPercent(readingProgress), - readingProgressTopPercent: clampToPercent(topPositionPercent), + readingProgressTopPercent: clampToPercent(topPositionPercent * 100), readingProgressAnchorIndex: anchorIndex == Number.NaN ? undefined : anchorIndex, })