Skip to content

Commit

Permalink
Fix minimum interval warning shown when FSRS is enabled (#3409)
Browse files Browse the repository at this point in the history
  • Loading branch information
abdnh authored Sep 10, 2024
1 parent 9223b35 commit 21df287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/routes/deck-options/LapseOptions.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
? $config.relearnSteps[$config.relearnSteps.length - 1] / 60 / 24
: 0;
stepsExceedMinimumInterval =
lastRelearnStepInDays > $config.minimumLapseInterval
!$fsrs && lastRelearnStepInDays > $config.minimumLapseInterval
? tr.deckConfigRelearningStepsAboveMinimumInterval()
: "";
stepsTooLargeForFsrs =
Expand Down

0 comments on commit 21df287

Please sign in to comment.