histogram width divide by mode, not total #2

Merged
christofsteel merged 47 commits from honigle into main 2022-02-02 13:59:36 +01:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit fcf91e8265 - Show all commits

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)
)
}