department-of-veterans-affairs/vets-website

View on GitHub
src/applications/accredited-representative-portal/accreditation/21a/pages/01-personal-information-chapter/notInGoodStanding.js

Summary

Maintainability
A
0 mins
Test Coverage
import NotInGoodStanding from '../../components/01-personal-information-chapter/NotInGoodStanding';

/** @type {PageSchema} */
export default {
  title: 'Not in good standing',
  path: 'not-in-good-standing',
  depends: formData =>
    formData.role === 'attorney' && formData.lawLicense === false,
  CustomPage: NotInGoodStanding,
  CustomPageReview: NotInGoodStanding,
  uiSchema: {},
  schema: {
    type: 'object',
    properties: {},
  },
};