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
Open the repro and note that the rendered page says "initial appear".
What is expected?
The @appear hook should not be invoked and the page should just say "initial".
What is actually happening?
The @appear hook is invoked even though the transition doesn't have an appear attribute, and hence shouldn't be triggering on appear. The same thing happens if you add :appear ="false" to the transition.
Ran into this when building some custom transition components where appear should be user-controlled, but was being invoked all the time instead.