From 8192f1d0ced4676ce063d21e04c6ade530b165bc Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 2 Feb 2022 19:08:48 -0800 Subject: [PATCH] Update index.tsx --- components/CharacterUnit/index.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/CharacterUnit/index.tsx b/components/CharacterUnit/index.tsx index f92bd67a..dc0600ae 100644 --- a/components/CharacterUnit/index.tsx +++ b/components/CharacterUnit/index.tsx @@ -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) }