diff options
Diffstat (limited to 'react-frontend/src/pages/Games.tsx')
| -rw-r--r-- | react-frontend/src/pages/Games.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/react-frontend/src/pages/Games.tsx b/react-frontend/src/pages/Games.tsx index 2a9b23a..b43da06 100644 --- a/react-frontend/src/pages/Games.tsx +++ b/react-frontend/src/pages/Games.tsx @@ -15,7 +15,7 @@ export default function Games () { }, []); const allGames = games.map((game) => ( - <GameCard link={`/game/${game.titleSlug}`} game={game} key={game.id}/> + <GameCard link={`/game/${game.user.user_name}/${game.titleSlug}`} game={game} key={game.id}/> )); return ( |
