From d06b7c3b0fa6a83d762cfe7566ae438894ba4570 Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Sun, 1 Feb 2026 01:44:48 +0100 Subject: [PATCH] update type definition for containerRef in ColorPickerProps to allow null --- apps/web/src/components/ui/color-picker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/ui/color-picker.tsx b/apps/web/src/components/ui/color-picker.tsx index ad350e0e..a57a86e0 100644 --- a/apps/web/src/components/ui/color-picker.tsx +++ b/apps/web/src/components/ui/color-picker.tsx @@ -7,7 +7,7 @@ interface ColorPickerProps { value?: string; onChange?: (value: string) => void; className?: string; - containerRef?: React.RefObject; + containerRef?: React.RefObject; } const hexToHsv = (hex: string) => {