From cfe508ee6229d7ee5c97408dd3286e560c5250b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=B6=9B?= Date: Tue, 31 Dec 2024 13:20:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=B8=80=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/HslAsssemble.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/HslAsssemble.tsx b/src/components/HslAsssemble.tsx index 8e35f7b..0f607de 100644 --- a/src/components/HslAsssemble.tsx +++ b/src/components/HslAsssemble.tsx @@ -28,7 +28,7 @@ export function HslAssemble({ color, onChange }: HslAssembleProps) { const newColor = colorFn?.hsl_to_hex(h, s / 100, l / 100) ?? '000000'; onChange(newColor); } catch (error) { - console.error('[Convert RGB]', error); + console.error('[Convert HSL]', error); } }, [h, s, l]); useEffect(() => {