Closed JoviDeCroock closed 3 months ago
Latest commit: 57ab3de3acdfb0f38705a979b9bfde09ce012c45
The changes in this PR will be included in the next version bump.
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
Name | Link |
---|---|
Latest commit | 57ab3de3acdfb0f38705a979b9bfde09ce012c45 |
Latest deploy log | https://app.netlify.com/sites/preact-signals-demo/deploys/66addf2f1a208e0008924c3d |
Deploy Preview | https://deploy-preview-587--preact-signals-demo.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Size Change: 0 B
Total Size: 83 kB
Avoid inheriting from signal in ReadonlySignal so we can't accidentally widen the type by doing
const computed: Signal<any> = useComputed(() => {})
, in widening this type we would lose thereadonly
aspect of the value property effectively making it a mutable signal.Fixes https://github.com/preactjs/signals/issues/585