summaryrefslogtreecommitdiff
path: root/frontend/src/components/gameList.js
diff options
context:
space:
mode:
authorjbion <joffrey.bion@amadeus.com>2017-05-19 20:17:35 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2017-05-20 00:12:39 +0200
commita13f913c6a594a14a2cb9ab42dbd0493372583fb (patch)
tree2ac200b06532b7be09b0192a4455ab132cd5010b /frontend/src/components/gameList.js
parentSet versions of packages to latest (diff)
downloadseven-wonders-a13f913c6a594a14a2cb9ab42dbd0493372583fb.tar.gz
seven-wonders-a13f913c6a594a14a2cb9ab42dbd0493372583fb.tar.bz2
seven-wonders-a13f913c6a594a14a2cb9ab42dbd0493372583fb.zip
Add error toasts
Diffstat (limited to 'frontend/src/components/gameList.js')
-rw-r--r--frontend/src/components/gameList.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/src/components/gameList.js b/frontend/src/components/gameList.js
index f49a7589..b4167927 100644
--- a/frontend/src/components/gameList.js
+++ b/frontend/src/components/gameList.js
@@ -6,7 +6,6 @@ import Immutable from 'seamless-immutable'
const GameList = (props) => (
<div>
{Immutable.asMutable(props.games).map((game, index) => {
-
const joinGame = () => props.joinGame(game.id)
return (<Flex key={index}>
bgstack15