summaryrefslogtreecommitdiff
path: root/frontend/src/api
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2018-06-08 20:49:20 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2018-06-09 12:49:52 +0200
commitfdffc7e26ffc4af07aa8c0e5fc76e85901f1031b (patch)
tree1d881922e5ca6a9e688ad5b7aa27be9ded45472a /frontend/src/api
parentHistory entry about Livedoc (diff)
downloadseven-wonders-fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b.tar.gz
seven-wonders-fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b.tar.bz2
seven-wonders-fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b.zip
Cleanup the mess
Diffstat (limited to 'frontend/src/api')
-rw-r--r--frontend/src/api/websocket.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/api/websocket.js b/frontend/src/api/websocket.js
index 5adae17b..6813676c 100644
--- a/frontend/src/api/websocket.js
+++ b/frontend/src/api/websocket.js
@@ -1,7 +1,7 @@
// @flow
import SockJS from 'sockjs-client';
import type { Client, Frame, Message, Options, Subscription } from 'webstomp-client';
-import Stomp from 'webstomp-client';
+import * as Stomp from 'webstomp-client';
const DEFAULT_DEBUG_OPTIONS = {
debug: process.env.NODE_ENV !== 'production',
bgstack15