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(() => {