diff --git a/src/scripts/inputManager.js b/src/scripts/inputManager.js index 1f65230154..cacc6c99a3 100644 --- a/src/scripts/inputManager.js +++ b/src/scripts/inputManager.js @@ -42,7 +42,7 @@ import appHost from 'apphost'; function checkCommandTime(command) { - let last = commandTimes[command] || 0; + const last = commandTimes[command] || 0; const now = new Date().getTime(); if ((now - last) < 1000) {