Skip to content

Commit

Permalink
Fixed build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ychetyrko committed Sep 3, 2024
1 parent 49e5630 commit 2a67641
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/html/HtmlDriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// By contributing, you agree that your contributions will be
// automatically licensed under the license referred above.

import { RxSystem, RxNode, Priority, Handler, proceed } from "reactronic"
import { RxSystem, RxNode, Priority, Handler, proceedSyncOrAsync } from "reactronic"
import { Constants, El, ElDriver, ElImpl } from "./El.js"

// WebDriver
Expand Down Expand Up @@ -77,7 +77,7 @@ export class WebDriver<T extends Element, M = unknown> extends ElDriver<T, M> {
if (element instanceof ElImpl)
element.prepareForUpdate()
let result = super.update(node)
result = proceed(result,
result = proceedSyncOrAsync(result,
v => {
if (element.place === undefined) {
const oel = node.owner.element
Expand Down

0 comments on commit 2a67641

Please sign in to comment.