We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
:on-load-1
1 parent d3550b8 commit 9fe280eCopy full SHA for 9fe280e
src/portal/runtime/rpc.cljc
@@ -12,6 +12,11 @@
12
(when-let [f (get-in session [:options :on-load])]
13
(try
14
(f)
15
+ (catch #?(:cljs :default :default Exception) e
16
+ (tap> e))))
17
+ (when-let [f (get-in session [:options :on-load-1])]
18
+ (try
19
+ (f (c/make-atom (:session-id session)))
20
(catch #?(:cljs :default :default Exception) e
21
(tap> e)))))
22
0 commit comments