mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-01 11:48:04 +08:00
added missing semicolons
This commit is contained in:
parent
4e564ddbec
commit
00fadcc386
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…
Add table
Reference in a new issue