Skip to content

Commit ca3660f

Browse files
committed
fix: 100 max-len
1 parent dec8676 commit ca3660f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/reducers/errors.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ function create(initialState) {
3030
[a.clearError]: state => ({ ...state, alerts: state.alerts.slice(1) }),
3131
[a.newError]: (state, { payload }) => ({
3232
...state,
33+
// eslint-disable-next-line max-len
3334
alerts: [...state.alerts, { title: payload.title, details: payload.details, support: payload.support }],
3435
}),
3536
[a.clearAllErrorIcons]: state => ({

0 commit comments

Comments
 (0)