You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I click on the item to display the popup and then scroll I see the error
thaw-0.4.2/src/popover/mod.rs:140:21) outside a reactive tracking context. This might mean your app is not responding to changes in signal values in the way you expect.
Here’s how to fix it:
1. If this is inside a `view!` macro, make sure you are passing a function, not a value.
❌ NO <p>{x.get() * 2}</p>
✅ YES <p>{move || x.get() * 2}</p>
2. If it’s in the body of a component, try wrapping this access in a closure:
❌ NO let y = x.get() * 2
✅ YES let y = move || x.get() * 2.
3. If you’re *trying* to access the value without tracking, use `.get_untracked()` or `.with_untracked()` instead.
The text was updated successfully, but these errors were encountered:
When I have a Popover in a scrobbale section
If I click on the item to display the popup and then scroll I see the error
The text was updated successfully, but these errors were encountered: