From 8e4574888d91c8771a26216409d6739698d3d6ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Moya?= Date: Thu, 7 Nov 2024 18:17:24 +0100 Subject: [PATCH] :bug: Fix import of tinycolor2 --- frontend/src/app/main/ui/workspace/tokens/tinycolor.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/workspace/tokens/tinycolor.cljs b/frontend/src/app/main/ui/workspace/tokens/tinycolor.cljs index 9a8d74f10..1770fb586 100644 --- a/frontend/src/app/main/ui/workspace/tokens/tinycolor.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/tinycolor.cljs @@ -4,7 +4,7 @@ This library was chosen as it is already used by StyleDictionary, so there is no extra dependency cost and there was no clojure alternatives with all the necessary features." (:require - ["tinycolor2" :as tinycolor])) + ["tinycolor2$default" :as tinycolor])) (defn tinycolor? [^js x] (and (instance? tinycolor x) (.isValid x)))