Skip to content

Commit 291b538

Browse files
committed
remove icon from default head
1 parent f16e413 commit 291b538

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/py/reactpy/reactpy/backend/_common.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,7 @@ def vdom_head_elements_to_html(head: Sequence[VdomDict] | VdomDict | str) -> str
117117
class CommonOptions:
118118
"""Options for ReactPy's built-in backed server implementations"""
119119

120-
head: Sequence[VdomDict] | VdomDict | str = (
121-
html.title("ReactPy"),
122-
html.link(
123-
{
124-
"rel": "icon",
125-
"href": "/_reactpy/assets/reactpy-logo.ico",
126-
"type": "image/x-icon",
127-
}
128-
),
129-
)
120+
head: Sequence[VdomDict] | VdomDict | str = (html.title("ReactPy App"),)
130121
"""Add elements to the ``<head>`` of the application.
131122
132123
For example, this can be used to customize the title of the page, link extra

0 commit comments

Comments
 (0)