Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyi_hashes.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"reflex/components/datadisplay/__init__.pyi": "cf087efa8b3960decc6b231cc986cfa9",
"reflex/components/datadisplay/code.pyi": "651fc3d417b998eb1c3d072328f505d0",
"reflex/components/datadisplay/dataeditor.pyi": "601c59f3ced6ab94fcf5527b90472a4f",
"reflex/components/datadisplay/shiki_code_block.pyi": "9aa77c0834d2eea2c1693f01971fb244",
"reflex/components/datadisplay/shiki_code_block.pyi": "ac16fd6c23eef7ce0185437ecf2d529d",
"reflex/components/el/__init__.pyi": "09042a2db5e0637e99b5173430600522",
"reflex/components/el/element.pyi": "323cfb5d67d8ccb58ac36c7cc7641dc3",
"reflex/components/el/elements/__init__.pyi": "280ed457675f3720e34b560a3f617739",
Expand Down
2 changes: 1 addition & 1 deletion reflex/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1429,7 +1429,7 @@ def _submit_work(fn: Callable[..., tuple[str, str]], *args, **kwargs):
)
if self.theme is not None:
# Fix #2992 by removing the top-level appearance prop
self.theme.appearance = None
self.theme.appearance = None # pyright: ignore[reportAttributeAccessIssue]
progress.advance(task)

# Compile the app root.
Expand Down
2 changes: 1 addition & 1 deletion reflex/compiler/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def compile_custom_component(
A tuple of the compiled component and the imports required by the component.
"""
# Render the component.
render = component.get_component(component)
render = component.get_component()

# Get the imports.
imports: ParsedImportDict = {
Expand Down
Loading
Loading