histogram width divide by mode, not total #2
2 changed files with 2 additions and 4 deletions
|
@ -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>
|
||||
|
|
|
@ -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)
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue