@reffuse/extension-query 0.1.5 #16

Merged
Thilawyn merged 347 commits from next into master 2025-06-01 05:28:47 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 099a28ca0d - Show all commits

View File

@@ -1,6 +1,6 @@
{
"name": "reffuse",
"version": "0.1.10",
"version": "0.1.11",
"type": "module",
"files": [
"./README.md",

View File

@@ -52,7 +52,7 @@ class SubscriptionSubRefImpl<in out A, in out B> extends Effectable.Class<A> imp
readonly setter: (parentValue: B, value: A) => B,
) {
super()
this.get = Ref.get(this.parent).pipe(Effect.map(this.getter))
this.get = Effect.map(Ref.get(this.parent), this.getter)
}
commit() {