Merge pull request #57 from eggplants/fix_share_text

Fix share text (`Wordle` -> `Not Wordle`)
This commit is contained in:
Hannah Park 2022-01-25 08:45:29 -05:00 committed by GitHub
commit 51457ee8d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,11 +3,7 @@ import { solutionIndex } from './words'
export const shareStatus = (guesses: string[]) => {
navigator.clipboard.writeText(
'Wordle ' +
solutionIndex +
' ' +
guesses.length +
'/6\n\n' +
`Not Wordle ${solutionIndex} ${guesses.length}/6\n\n` +
generateEmojiGrid(guesses)
)
}