From 6073d947b772694702ca2844d56527bf759f93eb Mon Sep 17 00:00:00 2001 From: Peter Date: Sun, 21 Jan 2024 21:19:25 -0500 Subject: [PATCH] Remove console.log --- src/views/GameView.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/views/GameView.vue b/src/views/GameView.vue index 5c7acff..7cfb07b 100644 --- a/src/views/GameView.vue +++ b/src/views/GameView.vue @@ -433,8 +433,6 @@ export default { this.battingStats = await fetchBattingStatsBySeries(this.seasonNumber, this.weekNumber, this.team1.id, this.team2.id) this.pitchingStats = await fetchPitchingStatsBySeries(this.seasonNumber, this.weekNumber, this.team1.id, this.team2.id) this.fieldingStats = await fetchFieldingStatsBySeries(this.seasonNumber, this.weekNumber, this.team1.id, this.team2.id) - - console.log(this.battingStats) }, outsToInnings(stat: PitchingStat): string { return outsToInnings(stat)