From 0a6e8845840dc8a14ab05ad13c7a35016b0bf9c8 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Wed, 5 Mar 2025 11:24:04 +0100 Subject: [PATCH] :bug: Remove unnecesary console.log --- frontend/src/app/main/router.cljs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frontend/src/app/main/router.cljs b/frontend/src/app/main/router.cljs index c85296ef2a..168d28001a 100644 --- a/frontend/src/app/main/router.cljs +++ b/frontend/src/app/main/router.cljs @@ -220,10 +220,7 @@ (rx/of nil nil) (rx/create (fn [subs] - (let [key (e/listen history "navigate" - (fn [o] - (.log js/console ">" o) - (rx/push! subs (.-token ^js o))))] + (let [key (e/listen history "navigate" (fn [o] (rx/push! subs (.-token ^js o))))] (fn [] (bhistory/disable! history) (e/unlistenByKey key))))))