diff --git a/frontend/src/pages/review.tsx b/frontend/src/pages/review.tsx index 3c6aae8..854e714 100644 --- a/frontend/src/pages/review.tsx +++ b/frontend/src/pages/review.tsx @@ -198,7 +198,6 @@ const ReviewPageWithRouter = withRouter( // Check if the user's answer was correct if (minDist === 0) { this.updateGroupSM2(true); - // TODO: Is this the correct amount of points? this.score_delta += 1; // Empty the input field @@ -242,8 +241,6 @@ const ReviewPageWithRouter = withRouter( vocabToReviewCard(vocab).forEach(this.reviewQueue.enqueue); } - // TODO: Is this the correct amount - this.score_delta -= 1; this.props.setReview(this.props.current, this.increaseMeta(0, 1)); this.props.setPopover(true, "Das war nicht richtig", "red", "white"); }