department-of-veterans-affairs/vets-website

View on GitHub
src/applications/check-in/reducers/navigation/index.js

Summary

Maintainability
A
1 hr
Test Coverage
const initFormHandler = (state, action) => {
  return {
    ...state,
    form: {
      ...state.form,
      pages: action.payload.pages,
    },
  };
};

const updateFormHandler = (state, action) => {
  return {
    ...state,
    form: {
      ...state.form,
      pages: action.payload.pages,
    },
  };
};

export { initFormHandler, updateFormHandler };