Skip to content

Commit

Permalink
Merge pull request #48 from reapit/fix/cld-300-type-email-field
Browse files Browse the repository at this point in the history
[CLD-300] Fix type email field
  • Loading branch information
dannd4 authored Oct 15, 2019
2 parents c472b88 + 474c3d4 commit d217494
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/pages/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const Login: React.FunctionComponent<LoginProps> = (props: LoginProps) =>
<Form data-test="login-form">
<Input
dataTest="login-email"
type="text"
type="email"
labelText="Email"
id="email"
name="email"
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/modal/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const renderForm = ({ contact, onNextHandler, isSubmitting }) => () => {
<Input type="text" labelText="Home" id="home" name="home" />
<Input type="text" labelText="Mobile" id="mobile" name="mobile" />
<Input type="text" labelText="Work" id="work" name="work" />
<Input type="text" labelText="Email" id="email" name="email" />
<Input type="email" labelText="Email" id="email" name="email" />
<div className="flex justify-between">
<div className="flex items-center">
<span>RPS Ref:</span>
Expand Down

0 comments on commit d217494

Please sign in to comment.