Clean up logging

This commit is contained in:
Jordan Eldredge 2019-05-17 22:38:02 -07:00
parent 0b31a26457
commit 1715676046
3 changed files with 0 additions and 3 deletions

View file

@ -16,7 +16,6 @@ export function search(query) {
typoTolerance: "min"
},
(err, content) => {
console.log(content);
if (err != null) {
reject(err);
return;

View file

@ -161,7 +161,6 @@ const unloadedSkinEpic = (actions, states) =>
if (chunkState[chunk] != null) {
return null;
}
console.log({ chunk });
chunkState[chunk] = "fetching";
const response = await fetch(`/skinData/skins-${chunk}.json`);
const payload = await response.json();

View file

@ -8,7 +8,6 @@ firstSkinChunk.forEach(skin => {
skins[skin.md5] = skin;
defaultSkins.push(skin.md5);
});
console.log(skinChunkData);
const defaultState = {
searchQuery: null,