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,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