diff options
author | bobzel <zzzman@gmail.com> | 2020-07-31 19:22:47 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-07-31 19:22:47 -0400 |
commit | e084dfdc8da4cbf2ad7039111d9118a330259a33 (patch) | |
tree | 2d39b6bc6cb374a5d8d38e5a44f747a42d477f88 /src/Utils.ts | |
parent | 957d8b29266c3bb62474910d01f854c13f090f7c (diff) |
added debug flag to transpiler to catch hangs. fixed hang caused by imports being out of seqnce!?
Diffstat (limited to 'src/Utils.ts')
-rw-r--r-- | src/Utils.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Utils.ts b/src/Utils.ts index a01a94134..0b057dc23 100644 --- a/src/Utils.ts +++ b/src/Utils.ts @@ -1,8 +1,8 @@ import v4 = require('uuid/v4'); import v5 = require("uuid/v5"); -import { Socket, Room } from 'socket.io'; -import { Message } from './server/Message'; import { ColorState } from 'react-color'; +import { Socket } from 'socket.io'; +import { Message } from './server/Message'; export namespace Utils { export let DRAG_THRESHOLD = 4; |