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 7bd12cd8b8
commit 6eb431f721
26 changed files with 1157 additions and 1192 deletions

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(),
),
]);
}