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) }