Skip to content

Commit

Permalink
Remove redundant logging
Browse files Browse the repository at this point in the history
  • Loading branch information
slmnio committed Oct 15, 2022
1 parent 8254770 commit 32b76f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion website/src/components/broadcast/Standings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions website/src/components/broadcast/ThemeTransition.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
},
Expand Down

0 comments on commit 32b76f6

Please sign in to comment.