summaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2017-05-20 12:36:45 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2017-05-20 12:36:45 +0200
commit2751b9132aab1c7eaddd29a129be4b1d6df3f714 (patch)
tree4194d4181d4b96c054d83a3ca1e725f1e415123d /frontend
parentAdd LobbyController tests (diff)
downloadseven-wonders-2751b9132aab1c7eaddd29a129be4b1d6df3f714.tar.gz
seven-wonders-2751b9132aab1c7eaddd29a129be4b1d6df3f714.tar.bz2
seven-wonders-2751b9132aab1c7eaddd29a129be4b1d6df3f714.zip
Fixed 'unused React' warning
Diffstat (limited to 'frontend')
-rw-r--r--frontend/src/sagas/errors.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/src/sagas/errors.js b/frontend/src/sagas/errors.js
index 9808fe41..ba1ae40d 100644
--- a/frontend/src/sagas/errors.js
+++ b/frontend/src/sagas/errors.js
@@ -1,4 +1,3 @@
-import React from 'react'
import { apply, call, cancelled, put, take } from 'redux-saga/effects'
import { createSubscriptionChannel } from '../utils/websocket'
bgstack15