We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f10284e commit 0f968c3Copy full SHA for 0f968c3
src/store/index.ts
@@ -619,7 +619,7 @@ export default createStore({
619
(dateMultiplier < 1 ? 1 - dateMultiplier : dateMultiplier - 1)) /
620
Math.max(state.user.tasksCompletedToday, 1),
621
0,
622
- ); //get the amount of rating poings earned based on user rating, task repeat multiplier and number of tasks completed today
+ ); //get the amount of rating points earned based on user rating, task repeat multiplier and number of tasks completed today
623
state.user.rating = Math.max(state.user.rating, 0); //make sure user rating is not below 0
624
const pointsEarned: number = Math.max(
625
Math.floor(
0 commit comments