Skip to content

Commit

Permalink
chore(lint): remove console statement
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno committed Apr 10, 2021
1 parent f4d8d5b commit babe583
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/ArsenalParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ class ArsenalData {
const { mech, heavy: mechLong, exalted: mechExalted } = MECH;

this.loadout.mech = {};
console.log(mech && !mech.hide)
if (mech && !mech.hide) this.loadout.mech = new Mech(mech);
if (mechLong && !mechLong.hide) this.loadout.mech.heavy = new Weapon(mechLong);
if (mechExalted && !mechExalted.hide) this.loadout.mech.exalted = new Weapon(mechExalted);
Expand Down

0 comments on commit babe583

Please sign in to comment.