From e30e5906c8f289e14657a666d8ab8e1f0867b610 Mon Sep 17 00:00:00 2001 From: Dexterity <173429049+Dexterity104@users.noreply.github.com> Date: Sun, 10 May 2026 13:28:12 -0400 Subject: [PATCH] :recycle: Remove unreachable try/catch in hex->hsl (#9245) --- common/src/app/common/colors.cljc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/common/src/app/common/colors.cljc b/common/src/app/common/colors.cljc index 4d240cddb9..51a9afd5f7 100644 --- a/common/src/app/common/colors.cljc +++ b/common/src/app/common/colors.cljc @@ -332,10 +332,7 @@ (conj opacity))) (defn hex->hsl [hex] - (try - (-> hex hex->rgb rgb->hsl) - (catch #?(:clj Throwable :cljs :default) _e - [0 0 0]))) + (-> hex hex->rgb rgb->hsl)) (defn hex->hsla [data opacity]