Closed johann-crabnebula closed 4 months ago
Name | Link |
---|---|
Latest commit | f2eed5978d9d6c7082b82c213d12bd3e57497a93 |
Latest deploy log | https://app.netlify.com/sites/cn-devtools-app/deploys/66836912c4cecc000898d237 |
Deploy Preview | https://deploy-preview-329--cn-devtools-app.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.
What happened is that you put a non-reactive property before the reactive properties, so if the former is false, the effect never subscribes to the latter.
Solid seems to optimize the if statement in the
createEffect
call, in this case it breaks reactivity for me :/I rewrote the code to work around this.