Using regular space to join wordle letterboard.

This commit is contained in:
ThePendulum 2024-06-05 22:45:04 +02:00
parent 4ada601fb2
commit f384d595e4
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ function getBoard(letters, showLetters, context) {
return config.platform === 'irc'
? letter
: style.grey(letter);
}).join('');
}).join(' ');
return `${prefix}${middle}${suffix}Letters: ${letterBoard}`; // eslint-disable-line no-irregular-whitespace
}