summaryrefslogtreecommitdiff
path: root/frontend/src/scenes
diff options
context:
space:
mode:
authorVictor Chabbert <chabbertvi@eisti.eu>2017-08-07 23:56:23 +0200
committerVictor Chabbert <chabbertvi@eisti.eu>2017-08-07 23:56:23 +0200
commit6b9ebbfbd6fbe47900a4f2e785c550edb915669a (patch)
treebfff955ecd3fe675c679b905359326792a526ab3 /frontend/src/scenes
parentRemove unnecessary selector (diff)
downloadseven-wonders-6b9ebbfbd6fbe47900a4f2e785c550edb915669a.tar.gz
seven-wonders-6b9ebbfbd6fbe47900a4f2e785c550edb915669a.tar.bz2
seven-wonders-6b9ebbfbd6fbe47900a4f2e785c550edb915669a.zip
Fix flow errors
Diffstat (limited to 'frontend/src/scenes')
-rw-r--r--frontend/src/scenes/SplashScreen/index.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/src/scenes/SplashScreen/index.js b/frontend/src/scenes/SplashScreen/index.js
index 0732b1b3..7b45d20f 100644
--- a/frontend/src/scenes/SplashScreen/index.js
+++ b/frontend/src/scenes/SplashScreen/index.js
@@ -7,7 +7,6 @@ import HomeLayout from './components/HomeLayout';
class SplashScreen extends Component {
play = e => {
- e.preventDefault();
if (this._username !== undefined) {
this.props.chooseUsername(this._username);
}
bgstack15