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 c53d2e7 commit 963402aCopy full SHA for 963402a
src/store/index.ts
@@ -228,7 +228,7 @@ export default createStore({
228
state.user.rating = Math.max(
229
state.user.rating -
230
Math.sqrt(Math.max(state.user.rating, 0)) *
231
- Math.log(Math.max(i + 1, 1)),
+ (1 + Math.log(Math.max(i + 1, 1))),
232
0,
233
); //decrease user rating for each day of inactivity
234
}
0 commit comments