mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-04 04:51:16 +08:00
added missing semicolons
This commit is contained in:
parent
8aa110f28c
commit
abb53f9bb5
1 changed files with 4 additions and 4 deletions
|
@ -258,28 +258,28 @@ let commandsFontSize = {
|
|||
id: "changeFontSize1",
|
||||
display: "1x",
|
||||
exec: () => {
|
||||
changeFontSize(1);
|
||||
changeFontSize(1)
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "changeFontSize125",
|
||||
display: "1.25x",
|
||||
exec: () => {
|
||||
changeFontSize(125);
|
||||
changeFontSize(125)
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "changeFontSize15",
|
||||
display: "1.5x",
|
||||
exec: () => {
|
||||
changeFontSize(15);
|
||||
changeFontSize(15)
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "changeFontSize2",
|
||||
display: "2x",
|
||||
exec: () => {
|
||||
changeFontSize(2);
|
||||
changeFontSize(2)
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue