Skip to content

Commit

Permalink
Fix homMNum typo (used to be home..)
Browse files Browse the repository at this point in the history
  • Loading branch information
anjaleenaren committed Nov 17, 2023
1 parent c616da9 commit afbff53
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions client/src/FormPage/PageTwo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ export default function PageTwo({ data, setData }: Props) {
<div>
<FormControl required sx={{ m: 1, minWidth: 420 }}>
<TextField
value={data.homeMNum}
value={data.homMNum}
id="outlined-number"
label="M#/S#/AID#"
onChange={(event) =>
setData({ ...data, homeMNum: event.target.value })
setData({ ...data, homMNum: event.target.value })
}
/>
</FormControl>
Expand Down
4 changes: 2 additions & 2 deletions client/src/ReferralView/VictimCrime.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ export default function PageTwo({ referral, setReferral }: Props) {
<div>
<FormControl required sx={{ m: 1, minWidth: 420 }}>
<TextField
value={data?.homeMNum}
value={data?.homMNum}
id="outlined-number"
label="M#/S#/AID#"
onChange={(event) =>
setData({ ...data, homeMNum: event.target.value })
setData({ ...data, homMNum: event.target.value })
}
/>
</FormControl>
Expand Down
12 changes: 6 additions & 6 deletions server/dist/src/controllers/referral.controller.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/dist/src/models/referral.model.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ interface IReferral extends mongoose.Document {
homDecedentEthnicity: string;
homFMVNum: string;
homMEONum?: string;
homeMNum?: string;
homMNum?: string;
homCaseInformation?: string;
historyOfCommunication?: Array<communicationItem>;
victimServicesOutcome?: victimServicesOutcomeItem;
Expand Down
Loading

0 comments on commit afbff53

Please sign in to comment.