Fix
All checks were successful
Lint / lint (push) Successful in 10s

This commit is contained in:
Julien Valverdé
2025-02-18 22:33:49 +01:00
parent e71239b903
commit 809f512d11

View File

@@ -338,7 +338,7 @@ export class Reffuse<R> {
return this.useMemo( return this.useMemo(
SubscriptionRef.make(value), SubscriptionRef.make(value),
[], [],
{ doNotReExecuteOnRuntimeOrContextChange: false }, // Do not recreate the ref when the context changes { doNotReExecuteOnRuntimeOrContextChange: true }, // Do not recreate the ref when the context changes
) )
} }