Emoji picker bug fix

This commit is contained in:
2021-12-28 12:00:40 -03:00
parent c4bce522e9
commit 0ec2dd8d53
3 changed files with 4 additions and 1 deletions

View File

@@ -2,5 +2,5 @@ export default function addStartButtonFunctionality(game) {
const button = document.getElementById('start')
button.addEventListener('click', game)
button.addEventListener('click', () => game(false, false))
}