From e95643f198a1324020f0057a9ec391602336e166 Mon Sep 17 00:00:00 2001 From: Jai A Date: Fri, 16 Oct 2020 12:45:47 -0700 Subject: [PATCH] Remove console statements --- pages/mod/create.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pages/mod/create.vue b/pages/mod/create.vue index c755f596..23419e37 100644 --- a/pages/mod/create.vue +++ b/pages/mod/create.vue @@ -368,8 +368,6 @@ export default { await this.$router.replace('/dashboard/projects') - // eslint-disable-next-line no-console - console.log(result) } catch (err) { this.currentError = err.response.data.description window.scrollTo({ top: 0, behavior: 'smooth' }) @@ -403,8 +401,6 @@ export default { } this.versions[this.currentVersionIndex].file_parts = newFileParts - - console.log(this.versions) }, createVersion() { this.versions.push({ @@ -420,7 +416,6 @@ export default { }) this.currentVersionIndex = this.versions.length - 1 - console.log(this.versions) }, deleteVersion() { this.versions.splice(this.currentVersionIndex, 1)