fix: syntax with npm run fix

This commit is contained in:
eggplants 2022-01-26 20:57:29 +09:00
parent 7f3ebf6169
commit fcf91e8265
No known key found for this signature in database
GPG key ID: E84F494AD6539CE2
2 changed files with 2 additions and 4 deletions

View file

@ -61,9 +61,7 @@ export const BaseModal = ({ title, children, isOpen, handleClose }: Props) => {
>
{title}
</Dialog.Title>
<div className="mt-2">
{children}
</div>
<div className="mt-2">{children}</div>
</div>
</div>
</div>

View file

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