diff --git a/js/components/DominanceShower.js b/js/components/DominanceShower.js index 405a700..01dc571 100644 --- a/js/components/DominanceShower.js +++ b/js/components/DominanceShower.js @@ -6,8 +6,6 @@ import { Table } from 'reactstrap'; -import { findTeam } from '../utils/findTeam'; - export class DominanceShower extends React.Component { render() { @@ -18,7 +16,7 @@ export class DominanceShower extends React.Component {
| {findTeam(this.props.teams, this.props.stats.id).name} | +{this.props.stats.team_name} | ||
|---|---|---|---|
| {this.props.stats.points_made} | diff --git a/pages/tournament-statistics.js b/pages/tournament-statistics.js index 23008c1..a9e765c 100644 --- a/pages/tournament-statistics.js +++ b/pages/tournament-statistics.js @@ -21,6 +21,7 @@ class StatisticsTournamentPage extends React.Component { } render() { + /* let tournamentStatistics = { tournament: { code: 'abcd1234', @@ -185,6 +186,7 @@ class StatisticsTournamentPage extends React.Component { points_received: 103 } }; + */ return (|||