remove stray console.log

Fixes #14.
This commit is contained in:
Branden J Brown 2024-02-03 22:40:09 -06:00
parent 4e674348d5
commit 61b6893ec4
1 changed files with 0 additions and 1 deletions

View File

@ -75,7 +75,6 @@ const shellList = computed(() => {
} }
const l = [...Array(props.game.live).fill('🟥'), ...Array(props.game.blank).fill('🟦')]; const l = [...Array(props.game.live).fill('🟥'), ...Array(props.game.blank).fill('🟦')];
shuffle(l); shuffle(l);
console.log('compute shell list', props.game, l)
return [...l, ...Array(8 - props.game.live - props.game.blank).fill('⬛')]; return [...l, ...Array(8 - props.game.live - props.game.blank).fill('⬛')];
}); });