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 Masen Furer
parent d520b34762
commit 5e1fe07e0b
No known key found for this signature in database
GPG Key ID: 2AE2BD5531FF94F4

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%"
)
),
),