Fix build errors

This commit is contained in:
Justin Edmund 2022-02-27 00:42:45 -08:00
parent 4a2c57ee47
commit 8ce10c43b1
2 changed files with 3 additions and 1 deletions

View file

@ -71,6 +71,8 @@ const BottomHeader = () => {
} else { } else {
return (<Button icon="edit" click={toggleDetails}>Edit info</Button>) return (<Button icon="edit" click={toggleDetails}>Edit info</Button>)
} }
} else {
return (<div />)
} }
} }

View file

@ -13,7 +13,7 @@ interface Props {
grid: GridWeapon[] grid: GridWeapon[]
user?: User user?: User
createdAt: Date createdAt: Date
displayUser: boolean displayUser?: boolean | false
onClick: (shortcode: string) => void onClick: (shortcode: string) => void
} }