Mute socket messages in production, fix max-len, update dependencies

This commit is contained in:
Maksim Eltyshev
2019-09-25 02:26:31 +05:00
parent d7cc9a0d56
commit 2398199740
26 changed files with 1157 additions and 1192 deletions
+4 -2
View File
@@ -6,7 +6,9 @@ import EntryActionTypes from '../../../constants/EntryActionTypes';
export default function* () {
yield all([
takeLatest(EntryActionTypes.AUTHENTICATE, ({ payload: { data } }) => authenticateService(data)),
// eslint-disable-next-line max-len
takeLatest(EntryActionTypes.AUTHENTICATION_ERROR_CLEAR, () => clearAuthenticationErrorService()),
takeLatest(
EntryActionTypes.AUTHENTICATION_ERROR_CLEAR,
() => clearAuthenticationErrorService(),
),
]);
}