diff --git a/frontend/src/components/rankingTeamList.js b/frontend/src/components/rankingTeamList.js index 6138c9c17..4b6bf368f 100644 --- a/frontend/src/components/rankingTeamList.js +++ b/frontend/src/components/rankingTeamList.js @@ -85,9 +85,12 @@ class RankingTeamList extends Component { ); } else { - const teamsToShow = props.teams.filter((team) => { - return team.has_active_submission || !this.props.canRequest; - }); + // const teamsToShow = props.teams.filter((team) => { + // return team.has_active_submission || !this.props.canRequest; + // }); + + // Note: this will look odd when this.props.canRequest is false. Doesn't matter for now...but test during a simulated freeze and fix before freeze. + const teamsToShow = props.teams; const teamRows = teamsToShow.map((team) => { let buttonContent = "Request"; if (state.pendingRequests[team.id]) { @@ -166,6 +169,11 @@ class RankingTeamList extends Component {