From 5e1fe07e0b2b4422abcdbc2b2519f8fe40981caa Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Mon, 13 May 2024 15:37:45 -0700 Subject: [PATCH] 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 --- reflex/.templates/apps/demo/code/demo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/.templates/apps/demo/code/demo.py b/reflex/.templates/apps/demo/code/demo.py index 7031f09d03..2774ec5794 100644 --- a/reflex/.templates/apps/demo/code/demo.py +++ b/reflex/.templates/apps/demo/code/demo.py @@ -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%" ) ), ),