-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commenting out all Financial Information form related code
- Loading branch information
1 parent
af92b5a
commit 47499f7
Showing
5 changed files
with
38 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
// React Imports | ||
import React from 'react'; | ||
// Material UI Imports | ||
import Typography from '@mui/material/Typography'; | ||
import { FormSection } from '../Form'; | ||
// // React Imports | ||
// import React from 'react'; | ||
// // Material UI Imports | ||
// import Typography from '@mui/material/Typography'; | ||
// import { FormSection } from '../Form'; | ||
|
||
const FinancialInfo = () => ( | ||
<FormSection title="Financial Information"> | ||
<Typography>To be completed</Typography> | ||
</FormSection> | ||
); | ||
// const FinancialInfo = () => ( | ||
// <FormSection title="Financial Information"> | ||
// <Typography>To be completed</Typography> | ||
// </FormSection> | ||
// ); | ||
|
||
export default FinancialInfo; | ||
// export default FinancialInfo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
import BasicInfo from './BasicInfo'; | ||
import FinancialInfo from './FinancialInfo'; | ||
// import FinancialInfo from './FinancialInfo'; | ||
import HousingInfo from './HousingInfo'; | ||
|
||
const CIVIC_FORM_LIST = [ | ||
{ path: 'basic-info', label: 'Basic Information', element: BasicInfo, key: 'basic_info' }, | ||
{ path: 'housing-info', label: 'Housing Information', element: HousingInfo, key: 'housing_info' }, | ||
{ | ||
path: 'financial-info', | ||
label: 'Financial Information', | ||
element: FinancialInfo, | ||
key: 'financial_info' | ||
} | ||
{ path: 'housing-info', label: 'Housing Information', element: HousingInfo, key: 'housing_info' } | ||
// { | ||
// path: 'financial-info', | ||
// label: 'Financial Information', | ||
// element: FinancialInfo, | ||
// key: 'financial_info' | ||
// } | ||
]; | ||
|
||
export default CIVIC_FORM_LIST; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
import BasicInfo from './BasicInfo'; | ||
import FinancialInfo from './FinancialInfo'; | ||
// import FinancialInfo from './FinancialInfo'; | ||
import HousingInfo from './HousingInfo'; | ||
import FormLayout from './FormLayout'; | ||
import CIVIC_FORM_LIST from './FormList'; | ||
|
||
export { BasicInfo, FinancialInfo, HousingInfo, FormLayout, CIVIC_FORM_LIST }; | ||
export { | ||
BasicInfo, | ||
// FinancialInfo, | ||
HousingInfo, | ||
FormLayout, | ||
CIVIC_FORM_LIST | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import React from 'react'; | ||
import { render } from '@testing-library/react'; | ||
import { expect, it, describe } from 'vitest'; | ||
import { FinancialInfo } from '@components/CivicProfileForms'; | ||
// import React from 'react'; | ||
// import { render } from '@testing-library/react'; | ||
// import { expect, it, describe } from 'vitest'; | ||
// import { FinancialInfo } from '@components/CivicProfileForms'; | ||
|
||
describe('Financial Info Form', () => { | ||
it('renders', () => { | ||
const { getByText } = render(<FinancialInfo />); | ||
expect(getByText('Financial Information')).not.toBeNull(); | ||
}); | ||
}); | ||
// describe('Financial Info Form', () => { | ||
// it('renders', () => { | ||
// const { getByText } = render(<FinancialInfo />); | ||
// expect(getByText('Financial Information')).not.toBeNull(); | ||
// }); | ||
// }); |