diff --git a/src/ui/Main.tsx b/src/ui/Main.tsx index 1501de4..c8f6f08 100644 --- a/src/ui/Main.tsx +++ b/src/ui/Main.tsx @@ -65,8 +65,6 @@ export class Main extends React.Component { if (wasPatched) { const unpatched = await unpatchGame() - console.log(`unpatched game? ${unpatched}`) - if (!unpatched) { alert( `Could not unpatch game! (You should be able to find your metadata backup in ${await dataDir()}\\cultivation\\)` diff --git a/src/ui/Mods.tsx b/src/ui/Mods.tsx index f7c45d6..07e701f 100644 --- a/src/ui/Mods.tsx +++ b/src/ui/Mods.tsx @@ -53,8 +53,6 @@ export class Mods extends React.Component { } async addDownload(mod: ModData) { - console.log('Downloading:', mod.name) - const modFolder = await getModsFolder() const modPath = `${modFolder}${mod.id}.zip` const dlLinks = await getModDownload(String(mod.id)) diff --git a/src/ui/components/common/DirInput.tsx b/src/ui/components/common/DirInput.tsx index 16de06b..1bcbc51 100644 --- a/src/ui/components/common/DirInput.tsx +++ b/src/ui/components/common/DirInput.tsx @@ -68,7 +68,6 @@ export default class DirInput extends React.Component { directory: true, }) } else { - console.log(this.props.openFolder) path = await open({ filters: [{ name: 'Files', extensions: this.props.extensions || ['*'] }], defaultPath: this.props.openFolder, diff --git a/src/ui/components/menu/Options.tsx b/src/ui/components/menu/Options.tsx index 0371582..44610b7 100644 --- a/src/ui/components/menu/Options.tsx +++ b/src/ui/components/menu/Options.tsx @@ -215,7 +215,6 @@ export default class Options extends React.Component { } async restoreMetadata() { - console.log(this.props) await meta.restoreMetadata(this.props.downloadManager) } diff --git a/src/ui/components/mods/ModList.tsx b/src/ui/components/mods/ModList.tsx index 118dee0..006a93d 100644 --- a/src/ui/components/mods/ModList.tsx +++ b/src/ui/components/mods/ModList.tsx @@ -51,8 +51,6 @@ export class ModList extends React.Component { const newInfo = mod.info as PartialModData - console.log(newInfo) - return mod })