fix: share text (Wordle -> Not Wordle)
This commit is contained in:
parent
fd95f7a5d8
commit
f0ffd07a58
1 changed files with 2 additions and 6 deletions
|
@ -3,12 +3,8 @@ import { solutionIndex } from './words'
|
|||
|
||||
export const shareStatus = (guesses: string[]) => {
|
||||
navigator.clipboard.writeText(
|
||||
'Wordle ' +
|
||||
solutionIndex +
|
||||
' ' +
|
||||
guesses.length +
|
||||
'/6\n\n' +
|
||||
generateEmojiGrid(guesses)
|
||||
`Not Wordle ${solutionIndex} ${guesses.length}/6\n\n` +
|
||||
generateEmojiGrid(guesses)
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue