]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/results/List.js
server calculated scoring
[alttp.git] / resources / js / components / results / List.js
index cdd90e847e91785b587ee8376f30912f67ba91f4..f4d4ff10ee502130f44f65a9e03762347100d692 100644 (file)
@@ -6,9 +6,8 @@ import { sortByResult } from '../../helpers/Participant';
 import { getRunners } from '../../helpers/Tournament';
 
 const List = ({ round, tournament }) => <div className="results d-flex flex-wrap">
-       {sortByResult(getRunners(tournament), round).map((participant, index) =>
+       {sortByResult(getRunners(tournament), round).map(participant =>
                <Item
-                       index={index}
                        key={participant.id}
                        participant={participant}
                        round={round}