diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-08 20:49:20 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-09 12:49:52 +0200 |
commit | fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b (patch) | |
tree | 1d881922e5ca6a9e688ad5b7aa27be9ded45472a /frontend/src/api | |
parent | History entry about Livedoc (diff) | |
download | seven-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.js | 2 |
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', |