mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-09 17:04:30 +08:00
end range seems to be non inclusive
This commit is contained in:
parent
84bed4210a
commit
f0b80ff967
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ const CONFIG_SCHEMA = joi.object({
|
|||
playSoundOnError: joi.boolean(),
|
||||
playSoundOnClick: joi
|
||||
.string()
|
||||
.valid("off", ..._.range(1, 11).map(_.toString)),
|
||||
.valid("off", ..._.range(1, 12).map(_.toString)),
|
||||
soundVolume: joi.string().valid("0.1", "0.5", "1.0"),
|
||||
startGraphsAtZero: joi.boolean(),
|
||||
showOutOfFocusWarning: joi.boolean(),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue