Update index.tsx

This commit is contained in:
Justin Edmund 2022-02-02 19:08:48 -08:00
parent ecfc62900d
commit 8192f1d0ce

View file

@ -15,8 +15,6 @@ interface Props {
}
const CharacterUnit = (props: Props) => {
console.log(props.gridCharacter?.character.name.en, props.gridCharacter?.uncap_level)
const [imageUrl, setImageUrl] = useState('')
const classes = classnames({
@ -44,7 +42,6 @@ const CharacterUnit = (props: Props) => {
}
function passUncapData(uncap: number) {
console.log(`passuncapdata ${uncap}`)
if (props.gridCharacter)
props.updateUncap(props.gridCharacter.id, props.position, uncap)
}