diff options
author | marcin grzebieluch <[email protected]> | 2024-06-25 10:20:51 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-06-25 10:20:51 +0200 |
commit | f123617c3343d9fee94e0f92d9fc8beec18fc6d6 (patch) | |
tree | 9c99cd58bb39f24e5080df0ff99debee9cf7b3b8 | |
parent | b6069a78ac0a2e6c6c963eab588ff4c8c901b5cb (diff) | |
download | monkeytype-f123617c3343d9fee94e0f92d9fc8beec18fc6d6.tar.gz monkeytype-f123617c3343d9fee94e0f92d9fc8beec18fc6d6.zip |
impr(practice): shuffle words when practicing missed/slow words (grzebiel) (#5519)
* impr(practice): random shuffle words in all practice modes
* change self made shuffle into CustomText.setMode("shuffle")
-rw-r--r-- | frontend/src/ts/test/practise-words.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/src/ts/test/practise-words.ts b/frontend/src/ts/test/practise-words.ts index c0bbef916..6d755ff95 100644 --- a/frontend/src/ts/test/practise-words.ts +++ b/frontend/src/ts/test/practise-words.ts @@ -107,6 +107,7 @@ export function init(missed: boolean, slow: boolean): boolean { CustomText.setLimitValue( (sortableSlowWords.length + sortableMissedWords.length) * 5 ); + CustomText.setMode("shuffle"); setCustomTextName("practise", undefined); |