diff --git a/components/AxSelect/index.tsx b/components/AxSelect/index.tsx index 28ee96f6..5c33def7 100644 --- a/components/AxSelect/index.tsx +++ b/components/AxSelect/index.tsx @@ -107,13 +107,6 @@ const AXSelect = (props: Props) => { }, [props.currentSkills, setSecondaryAxModifier]) useEffect(() => { - console.log( - primaryAxModifier, - primaryAxValue, - secondaryAxModifier, - secondaryAxValue - ) - let noErrors = false if (errors.axValue1 === '' && errors.axValue2 === '') { @@ -132,13 +125,6 @@ const AXSelect = (props: Props) => { secondaryAxValue > 0 ) noErrors = true - else - console.log( - primaryAxModifier >= 0, - primaryAxValue > 0, - secondaryAxModifier >= 0, - secondaryAxValue > 0 - ) } props.sendValidity(noErrors) diff --git a/components/WeaponGrid/index.tsx b/components/WeaponGrid/index.tsx index a051c7ed..33d9d32e 100644 --- a/components/WeaponGrid/index.tsx +++ b/components/WeaponGrid/index.tsx @@ -106,12 +106,8 @@ const WeaponGrid = (props: Props) => { .catch((error) => { const code = error.response.status const data = error.response.data - console.log(error.response) - - console.log(data, code) if (code === 422) { if (data.code === 'incompatible_weapon_for_position') { - console.log('Here') setShowIncompatibleAlert(true) } } @@ -339,7 +335,6 @@ const WeaponGrid = (props: Props) => { } const incompatibleAlert = () => { - console.log(t('alert.incompatible_weapon')) return showIncompatibleAlert ? ( key.group) @@ -28,7 +27,5 @@ export function groupWeaponKeys(keys: WeaponKey[]) { groupedKeys[weaponKeyGroups[i].slug] = keys.filter((key) => key.group == i) } - console.log(groupedKeys) - return groupedKeys }