Skip to content

Commit

Permalink
Merge branch 'main' into art/96895/isolate-21a-app
Browse files Browse the repository at this point in the history
  • Loading branch information
chumpy authored Nov 27, 2024
2 parents 0b9610c + cec0e38 commit 54b2b98
Show file tree
Hide file tree
Showing 56 changed files with 12,827 additions and 1,176 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const { snakeCase } = require('lodash');
// instead use generateFeatureToggles in server.js to set the toggle values
const profileToggles = {
profileUseExperimental: false,
aedpVADX: false,
coeAccess: true,
showEduBenefits1990Wizard: true,
showEduBenefits0994Wizard: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ const responses = {
generateFeatureToggles({
profileUseExperimental: true,
coeAccess: true,
aedpVADX: true,
}),
),
secondsOfDelay,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export const uiSchema = {
},
emailAddress: {
...emailUI('Email address'),
'ui:required': () => true,
'ui:options': {
classNames: 'vads-u-margin-bottom--3',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@
"postalCode": "20500"
},
"veteranContactInformation": {
"phoneNumber": "1231231234"
"phoneNumber": "1231231234",
"emailAddress": "[email protected]"
}
},
"view:686Information": {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@
"postalCode": "20500"
},
"veteranContactInformation": {
"phoneNumber": "1231231234"
"phoneNumber": "1231231234",
"emailAddress": "[email protected]"
}
},
"view:686Information": {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@
"postalCode": "20500"
},
"veteranContactInformation": {
"phoneNumber": "1231231234"
"phoneNumber": "1231231234",
"emailAddress": "[email protected]"
}
},
"view:686Information": {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@
"postalCode": "20500"
},
"veteranContactInformation": {
"phoneNumber": "1231231234"
"phoneNumber": "1231231234",
"emailAddress": "[email protected]"
}
},
"view:686Information": {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@
"postalCode": "20500"
},
"veteranContactInformation": {
"phoneNumber": "1231231234"
"phoneNumber": "1231231234",
"emailAddress": "[email protected]"
}
},
"view:686Information": {},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
import FormNavButtons from '~/platform/forms-system/src/js/components/FormNavButtons';
import FormNavButtons from 'platform/forms-system/src/js/components/FormNavButtons';
import { LAST_YEAR } from '../../utils/constants';

const HouseholdFinancialOnboarding = props => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
import FormNavButtons from '~/platform/forms-system/src/js/components/FormNavButtons';
import FormNavButtons from 'platform/forms-system/src/js/components/FormNavButtons';
import EnhancedEligibilityDescription from '../FormDescriptions/EnhancedEligibilityDescription';
import { LAST_YEAR } from '../../utils/constants';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
import FormNavButtons from '~/platform/forms-system/src/js/components/FormNavButtons';
import FormNavButtons from 'platform/forms-system/src/js/components/FormNavButtons';

const InsuranceInformation = props => {
const {
Expand Down
Loading

0 comments on commit 54b2b98

Please sign in to comment.