diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/recentGames.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/recentGames.tsx b/components/recentGames.tsx index 13bb87c..150520c 100644 --- a/components/recentGames.tsx +++ b/components/recentGames.tsx @@ -52,7 +52,7 @@ export default function RecentGames(props: { games?: Array<gameInfo> }) { <th style={{ width: "20%" }}>Datum</th> </tr> { - props.games?.map(game => <tr> + props.games?.map(game => <tr key={game.id}> <td style={LeftAlignedTableColumn}> <a href={"/user?id=" + game.opponent?.id} style={{ fontWeight: 500 |