Format all the files
This commit is contained in:
parent
5bff8d99cc
commit
b6773b56c1
22 changed files with 158 additions and 159 deletions
|
@ -14,12 +14,12 @@ export default {
|
|||
state.connectionError = false;
|
||||
},
|
||||
|
||||
SOCKET_ERROR: (state: SocketState, err : Error) => {
|
||||
SOCKET_ERROR: (state: SocketState, err: Error) => {
|
||||
state.connected = false;
|
||||
state.connectionError = err;
|
||||
},
|
||||
|
||||
SOCKET_CONNECT_ERROR: (state: SocketState, err : Error) => {
|
||||
SOCKET_CONNECT_ERROR: (state: SocketState, err: Error) => {
|
||||
state.connected = false;
|
||||
state.connectionError = err;
|
||||
},
|
||||
|
|
Reference in a new issue