Skip to content

Commit a61f4cb

Browse files
Update demo form email field to Business Email (#38)
- Change email field label from 'Email' to 'Business Email' - Update placeholder from '[email protected]' to '[email protected]' - Aligns with existing business email validation logic Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Alek <[email protected]>
1 parent 8c0b578 commit a61f4cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reflex_ui/blocks/demo_form.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ def get_component(cls, **props):
392392
input_field("Last name", "Smith", "last_name", "text", True),
393393
class_name="grid grid-cols-2 gap-4",
394394
),
395-
input_field("Email", "john@example.com", "email", "email", True),
395+
input_field("Business Email", "john@company.com", "email", "email", True),
396396
rx.el.div(
397397
input_field("Job title", "CTO", "job_title", "text", True),
398398
input_field(

0 commit comments

Comments
 (0)