From 2634388d096556b4c0bebc6e48eefa2ed4a78b30 Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Wed, 2 Oct 2024 14:37:24 +0200 Subject: [PATCH] Remove logging --- frontend/src/app/main/ui/workspace/tokens/modals/themes.cljs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/app/main/ui/workspace/tokens/modals/themes.cljs b/frontend/src/app/main/ui/workspace/tokens/modals/themes.cljs index df481aa253..f75bb4ba8f 100644 --- a/frontend/src/app/main/ui/workspace/tokens/modals/themes.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/modals/themes.cljs @@ -135,8 +135,7 @@ (let [theme (-> @theme-state (update :name str/trim) (update :group str/trim) - (update :description str/trim) - (doto js/console.log))] + (update :description str/trim))] (when-not (str/empty? (:name theme)) (on-submit theme))) (on-back)))]