Fix undefined game id while uploading files to new games
This commit is contained in:
parent
0566bac14b
commit
1a527bc819
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ export const GameView = ({ edit }) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<GameProvider game={game} gameId={realGameId}>
|
<GameProvider game={game} gameId={realGameId}>
|
||||||
<BoardView namespace={gameId} edit={edit} />
|
<BoardView namespace={realGameId} edit={edit} />
|
||||||
</GameProvider>
|
</GameProvider>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue