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
(defmultihandle
(fn [event args db conn local-conn] event))
services.cljs is used for the version with a server back-end and does all the requests over HTTP. client_services.cljs is used for a stand-alone front-end without any persistence. The local-conn in client_services.cljs is the substitute for the database on the server in services.cljs.
conn is the state on the front-end that the renderer uses and where the user interactions end up in. It would have been possible to re-use conn for local-conn but for modularity they are separate.
Hi @thegeez! How come you have a
conn
and alocal-conn
that both get transacted on when e.g. the db functionremove-item
is called?The text was updated successfully, but these errors were encountered: