Skip to content

Commit 122543c

Browse files
authored
Switching on async rendering. (#78)
1 parent 30f4854 commit 122543c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class Renderer {
2828
}
2929
static render(element: React.ReactNode, options?: RendererOptions) {
3030
const containerInfo = appContainer;
31-
const isConcurrent = false; //disabling since there seems to be a bug with onclick listeneres (when called without a console.log inside them)
31+
const isConcurrent = true;
3232
const hydrate = false;
3333

3434
const rendererOptions = Object.assign({}, defaultOptions, options);

0 commit comments

Comments
 (0)