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 b0e7e2e commit 0bc380fCopy full SHA for 0bc380f
frontend/src/ts/test/test-logic.ts
@@ -656,7 +656,10 @@ export async function addWord(): Promise<void> {
656
e,
657
"Error while getting next word. Please try again later"
658
),
659
- -1
+ -1,
660
+ {
661
+ important: true,
662
+ }
663
);
664
}
665
frontend/src/ts/test/words-generator.ts
@@ -749,6 +749,9 @@ export async function getNextWord(
749
(Config.mode === "custom" &&
750
CustomText.getLimitMode() === "word" &&
751
wordIndex < CustomText.getLimitValue()) ||
752
+ (Config.mode === "custom" &&
753
+ CustomText.getLimitMode() === "section" &&
754
+ sectionIndex < CustomText.getLimitValue()) ||
755
(Config.mode === "words" && wordIndex < Config.words)
756
) {
757
continueRandomGeneration = true;
0 commit comments