We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5c7ced commit 2693340Copy full SHA for 2693340
reflex/.templates/apps/base/code/pages/index.py
@@ -13,6 +13,6 @@ def index() -> rx.Component:
13
Returns:
14
The UI for the home page.
15
"""
16
- with open("README.md") as readme:
+ with open("README.md", encoding="utf-8") as readme:
17
content = readme.read()
18
return rx.markdown(content, component_map=styles.markdown_style)
0 commit comments