From 7af914eef07fce0d23b6de2556b8bb72f8adbeef Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 23 Aug 2022 08:01:31 +0200 Subject: [PATCH] :paperclip: Properly print on console UI related errors --- frontend/src/app/main/ui.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/main/ui.cljs b/frontend/src/app/main/ui.cljs index fd65d7569..768a86f1f 100644 --- a/frontend/src/app/main/ui.cljs +++ b/frontend/src/app/main/ui.cljs @@ -29,6 +29,7 @@ (mf/defc on-main-error [{:keys [error] :as props}] (mf/with-effect + (js/console.log error) (st/emit! (rt/assign-exception error))) [:span "Internal application error"])