Skip to content

Commit

Permalink
Merge pull request #89 from HackDavis/feat/team-ranking
Browse files Browse the repository at this point in the history
Fixed null error
  • Loading branch information
brandonw504 authored Apr 26, 2024
2 parents 6af61eb + dd84ddb commit 1e79ea9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function JudgeTeamGrouping() {
</button>
<form action={scoreAction}>
<button type="submit">Score Teams</button>
{trackResults === null
{trackResults !== null
? trackResults!.map((result) => (
<>
<h2>{result.track}</h2>
Expand Down

0 comments on commit 1e79ea9

Please sign in to comment.