From 7f7f28f871e70f3b8e22e380d62495eeeab7d1b1 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 17 Apr 2020 15:06:30 +0200 Subject: [PATCH] :sparkles: Remove store dependency from geom ns. --- frontend/src/uxbox/main/geom.cljs | 3 +-- frontend/src/uxbox/main/store.cljs | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/frontend/src/uxbox/main/geom.cljs b/frontend/src/uxbox/main/geom.cljs index 3246ffb8e..c8ced7d6c 100644 --- a/frontend/src/uxbox/main/geom.cljs +++ b/frontend/src/uxbox/main/geom.cljs @@ -11,8 +11,7 @@ [uxbox.util.geom.matrix :as gmt] [uxbox.util.geom.point :as gpt] [uxbox.util.math :as mth] - [uxbox.main.data.helpers :as helpers] - [uxbox.main.store :as st])) + [uxbox.main.data.helpers :as helpers])) ;; --- Relative Movement diff --git a/frontend/src/uxbox/main/store.cljs b/frontend/src/uxbox/main/store.cljs index 557792890..bc01282de 100644 --- a/frontend/src/uxbox/main/store.cljs +++ b/frontend/src/uxbox/main/store.cljs @@ -12,8 +12,6 @@ [uxbox.common.uuid :as uuid] [uxbox.util.storage :refer [storage]])) -;; TODO: move outside uxbox.main - (enable-console-print!) (def ^:dynamic *on-error* identity)