From 8970b6af26e4c9276ff7ff9a668aefd495080fcc Mon Sep 17 00:00:00 2001 From: Matchu Date: Wed, 3 Feb 2021 15:45:19 -0800 Subject: [PATCH] Remove stray console lines --- src/app/ItemPage.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/ItemPage.js b/src/app/ItemPage.js index f261837..207ef12 100644 --- a/src/app/ItemPage.js +++ b/src/app/ItemPage.js @@ -538,10 +538,8 @@ function ItemPageOutfitPreview({ itemId }) { if (colorIsBasic(newPetState.colorId)) { // When the user chooses a basic color, don't index on it specifically, // and instead reset to use default colors. - console.log("set to null"); setPreferredColorId(null); } else { - console.log("set to color", newPetState.colorId); setPreferredColorId(newPetState.colorId); } }