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
Hi, I am not sure if it is a bug. But whenever I press keys in an input element, a warning re-frame: Subscribe was called outside of a reactive context occurs.
To reproduce:
run command lein new re-frame <app-name> +re-pressed
change main-panel in views.cljs to
(defnmain-panel [] [:input])
press a key in the input element
The text was updated successfully, but these errors were encountered:
There is a fork of re-pressed that fixes this issue. Note: there are trade-offs between this repo and the fork. This repo has the console warnings described in this issue but guarantees event ordering, while the fork fixes the console warnings, but doesn't guarantee event ordering.
Hi, I am not sure if it is a bug. But whenever I press keys in an
input
element, a warningre-frame: Subscribe was called outside of a reactive context
occurs.To reproduce:
lein new re-frame <app-name> +re-pressed
main-panel
inviews.cljs
toThe text was updated successfully, but these errors were encountered: