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.
1 parent 2324ce8 commit eb6d662Copy full SHA for eb6d662
src/renderer/core.cljs
@@ -70,10 +70,13 @@
70
╚═════╝░░░░╚═╝░░░░╚═════╝░╚═════╝░╚═╝░╚════╝░")
71
72
(defn mount-root! []
73
- (rf/clear-subscription-cache!)
74
(let [container (.getElementById js/document "app")
75
root (ra.dom.client/create-root container)]
76
- (ra.dom.client/render root [error/boundary [app.v/root]])))
+ (ra.dom.client/render root [error/boundary [app.v/root]])
+
77
+ (defn ^:dev/after-load after-load []
78
+ (rf/clear-subscription-cache!)
79
+ (ra.dom.client/render root [error/boundary [app.v/root]]))))
80
81
(defn bootstrap-cb!
82
[]
0 commit comments