Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
fix(newPatient): correct input types of email and phone fields
Browse files Browse the repository at this point in the history
  • Loading branch information
oizuldan committed Feb 24, 2020
1 parent f5f3b29 commit 7b6b2cc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/patients/GeneralInformation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ const GeneralInformation = (props: Props) => {
onChange={(event: React.ChangeEvent<HTMLInputElement>) => {
onInputElementChange(event, 'phoneNumber')
}}
type="number"
/>
</div>
<div className="col">
Expand All @@ -217,6 +218,7 @@ const GeneralInformation = (props: Props) => {
onChange={(event: React.ChangeEvent<HTMLInputElement>) => {
onInputElementChange(event, 'email')
}}
type="email"
/>
</div>
</div>
Expand Down

0 comments on commit 7b6b2cc

Please sign in to comment.