File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ Unreleased
5959- :pull: `1281 ` - ``reactpy.core.vdom._EllipsisRepr `` has been moved to ``reactpy.types.EllipsisRepr ``.
6060- :pull: `1281 ` - ``reactpy.types.VdomDictConstructor `` has been renamed to ``reactpy.types.VdomConstructor ``.
6161- :pull: `1312 ` - ``REACTPY_ASYNC_RENDERING `` can now de-duplicate and cascade renders where necessary.
62+ - :pull: `1312 ` - ``REACTPY_ASYNC_RENDERING `` is now defaulted to ``True `` for up to 40x performance improvements.
6263
6364**Deprecated **
6465
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ def boolean(value: str | bool | int) -> bool:
8585
8686REACTPY_ASYNC_RENDERING = Option (
8787 "REACTPY_ASYNC_RENDERING" ,
88- default = False ,
88+ default = True ,
8989 mutable = True ,
9090 validator = boolean ,
9191)
You can’t perform that action at this time.
0 commit comments