From 32b76f62b38ea53dd4c65a0eca8a82394145efe7 Mon Sep 17 00:00:00 2001 From: Solomon Cammack Date: Sat, 15 Oct 2022 18:44:48 +0100 Subject: [PATCH] Remove redundant logging --- website/src/components/broadcast/Standings.vue | 1 - website/src/components/broadcast/ThemeTransition.vue | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/website/src/components/broadcast/Standings.vue b/website/src/components/broadcast/Standings.vue index e6b80676..c1ac86a0 100644 --- a/website/src/components/broadcast/Standings.vue +++ b/website/src/components/broadcast/Standings.vue @@ -299,7 +299,6 @@ export default { standings.forEach(group => { group.forEach((team, i) => { team.standings.rank = display; - console.log("tie show", i, team); team.standings.tie_show_number = i === 0; if (standings.length === 1) { diff --git a/website/src/components/broadcast/ThemeTransition.vue b/website/src/components/broadcast/ThemeTransition.vue index bc9b1135..a2ef3811 100644 --- a/website/src/components/broadcast/ThemeTransition.vue +++ b/website/src/components/broadcast/ThemeTransition.vue @@ -62,12 +62,12 @@ export default { }; }, directions() { - console.log("directions", this.start, this.end, this.left); + // console.log("directions", this.start, this.end, this.left); let start = this.start || "right"; let end = this.end || "left"; if (this.left && !this.start) start = "left"; if (this.left && !this.end) end = "right"; - console.log({ start, end }); + // console.log({ start, end }); return { start, end }; },