Typo in contact email address (#3292)

The demo template includes a drop down menu item named Contact
has an email address to the founders. However, the email address
includes an extraneous = character in the domain part making it
invalid.

Signed-off-by: Eric Brown <eric_wade_brown@yahoo.com>
This commit is contained in:
Eric Brown 2024-05-13 15:37:45 -07:00 committed by GitHub
parent dfdf03f029
commit bff4464a9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,7 +44,7 @@ def template(main_content: Callable[[], rx.Component]) -> rx.Component:
),
rx.chakra.menu_item(
rx.chakra.link(
"Contact", href="mailto:founders@=reflex.dev", width="100%"
"Contact", href="mailto:founders@reflex.dev", width="100%"
)
),
),