This commit is contained in:
Mary Hipp 2024-01-05 12:59:35 -05:00
parent 30bfee8fda
commit bff484e791
2 changed files with 4 additions and 2 deletions

View File

@ -32,7 +32,9 @@ export const appSocketConnected = createAction('socket/appSocketConnected');
* *
* Do not use. Only for use in middleware. * Do not use. Only for use in middleware.
*/ */
export const socketConnectionError = createAction<{ error: Error }>('socket/socketConnectionError');/** export const socketConnectionError = createAction<{ error: Error }>(
'socket/socketConnectionError'
); /**
* Socket.IO Disconnect * Socket.IO Disconnect
* *

View File

@ -57,7 +57,7 @@ export const setEventListeners = (arg: SetEventListenersArg) => {
); );
} }
} }
dispatch(socketConnectionError({ error })) dispatch(socketConnectionError({ error }));
}); });
/** /**