Skip to content

Commit 29341c0

Browse files
authored
feat(feedback): Use type=email for the email input textbox (#11954)
The `type="email"` textbox enables some basic browser settings like validating that the input looks like an email address, and will change the keyboard to make it easier for phone users to type their info into the box.
1 parent 3aca0f8 commit 29341c0

File tree

1 file changed

+1
-1
lines changed
  • packages/feedback/src/modal/components

1 file changed

+1
-1
lines changed

packages/feedback/src/modal/components/Form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export function Form({
188188
name="email"
189189
placeholder={emailPlaceholder}
190190
required={isEmailRequired}
191-
type="text"
191+
type="email"
192192
></input>
193193
</label>
194194
) : (

0 commit comments

Comments
 (0)