Merge pull request #57 from eggplants/fix_share_text
Fix share text (`Wordle` -> `Not Wordle`)
This commit is contained in:
commit
51457ee8d4
1 changed files with 2 additions and 6 deletions
|
@ -3,11 +3,7 @@ import { solutionIndex } from './words'
|
||||||
|
|
||||||
export const shareStatus = (guesses: string[]) => {
|
export const shareStatus = (guesses: string[]) => {
|
||||||
navigator.clipboard.writeText(
|
navigator.clipboard.writeText(
|
||||||
'Wordle ' +
|
`Not Wordle ${solutionIndex} ${guesses.length}/6\n\n` +
|
||||||
solutionIndex +
|
|
||||||
' ' +
|
|
||||||
guesses.length +
|
|
||||||
'/6\n\n' +
|
|
||||||
generateEmojiGrid(guesses)
|
generateEmojiGrid(guesses)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue