Skip to content

Commit

Permalink
Typo in contact email address (#3292)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
ericwb authored and masenf committed May 13, 2024
1 parent d520b34 commit 5e1fe07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reflex/.templates/apps/demo/code/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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%"
)
),
),
Expand Down

0 comments on commit 5e1fe07

Please sign in to comment.