diff --git a/frontend/src/app/main/ui/workspace/tokens/core.cljs b/frontend/src/app/main/ui/workspace/tokens/core.cljs index 20db33949..2ced1ece6 100644 --- a/frontend/src/app/main/ui/workspace/tokens/core.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/core.cljs @@ -37,9 +37,7 @@ (defn resolve-token-value [{:keys [value resolved-value] :as token}] (or resolved-value - (if-let [int-or-double (d/parse-double value)] - int-or-double - (throw (ex-info (str "Implement token value resolve for " value) token))))) + (d/parse-double value))) (defn maybe-resolve-token-value [{:keys [value] :as token}] (when value (resolve-token-value token)))