Mute socket messages in production, fix max-len, update dependencies
This commit is contained in:
@@ -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(),
|
||||
),
|
||||
]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user