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 {
return (<Button icon="edit" click={toggleDetails}>Edit info</Button>)
}
} else {
return (<div />)
}
}

View file

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