From cee5680a6a78f6433de727065781416013918099 Mon Sep 17 00:00:00 2001 From: Alexander Polynomdivision Date: Tue, 2 Oct 2018 17:32:09 +0200 Subject: [PATCH] feat: Remove negative scores --- frontend/src/pages/review.tsx | 3 --- 1 file changed, 3 deletions(-) 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"); }