fix some lints

This commit is contained in:
Paul Miller
2023-05-08 21:08:56 -05:00
parent 7cb0b0ddb5
commit ffe4671750
12 changed files with 23 additions and 23 deletions

View File

@@ -123,7 +123,7 @@ export const NiceP: ParentComponent = (props) => {
export const TinyButton: ParentComponent<{ onClick: () => void }> = (props) => {
return (
<button class="py-1 px-2 rounded-lg bg-white/10" onClick={props.onClick}>
<button class="py-1 px-2 rounded-lg bg-white/10" onClick={() => props.onClick()}>
{props.children}
</button>
)