Skip to content

Commit

Permalink
fix: @kit again
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack-Works committed Jul 16, 2019
1 parent 881669f commit c194646
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/extension/content-script/injections/MyUsername.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ new MutationObserverWatcher(
)
.enableSingleMode()
.setComparer(undefined, (a, b) => a.equals(b))
.addListener('onAdd', e => assign(e.detail.value))
.addListener('onChange', e => assign(e.detail.newValue))
.addListener('onAdd', e => assign(e.value))
.addListener('onChange', e => assign(e.newValue))
.startWatch()

const identities = new ValueRef<Person[]>([])
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@

"@holoflows/kit@https://github.com/DimensionDev/holoflows-kit":
version "0.4.0"
resolved "https://github.com/DimensionDev/holoflows-kit#ea426afa30acd4af3f64ab352ae7166e5d199c17"
resolved "https://github.com/DimensionDev/holoflows-kit#dea7ede388b2f1b57ec3241cdf1434506e748601"
dependencies:
"@types/lodash-es" "^4.1.4"
concurrent-lock "^1.0.7"
Expand Down

0 comments on commit c194646

Please sign in to comment.