@kithinji/orca 1.0.13 → 1.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1267,7 +1267,7 @@ function toSignal(obs, instance) {
1267
1267
  const subst = obs.subscribe((val) => {
1268
1268
  sig.value = val;
1269
1269
  });
1270
- instance.__drop = [...instance.__drop ?? [], () => subst.unsubscribe()];
1270
+ instance.__cleanup = [...instance.__cleanup ?? [], () => subst.unsubscribe()];
1271
1271
  return sig;
1272
1272
  }
1273
1273
  function isObservable(value) {