From b91e72d8a1b7c6217731a0bb502c0dac20446451 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 17 Mar 2025 16:29:00 +0100 Subject: [PATCH] :bug: Fix typo --- frontend/src/app/main/ui/workspace/tokens/update.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/workspace/tokens/update.cljs b/frontend/src/app/main/ui/workspace/tokens/update.cljs index 10fe6a23a8..9de0bd2335 100644 --- a/frontend/src/app/main/ui/workspace/tokens/update.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/update.cljs @@ -78,7 +78,7 @@ (reduce (fn [acc [attrs v]] (cond - (some attrs #{:widht :height}) (let [[_ a b] (data/diff #{:width :height} attrs)] + (some attrs #{:width :height}) (let [[_ a b] (data/diff #{:width :height} attrs)] (cond-> (assoc acc b v) ;; Exact match in attrs a (assoc a v)))