From 0db08f4c62fda6f74490e4774cf1208b805f995b Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Fri, 21 Nov 2025 01:30:45 +0200 Subject: [PATCH] client/note color picker: decrease the debouncer interval --- apps/client/src/menus/custom-items/NoteColorPicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/menus/custom-items/NoteColorPicker.tsx b/apps/client/src/menus/custom-items/NoteColorPicker.tsx index 9a65073a7..775769261 100644 --- a/apps/client/src/menus/custom-items/NoteColorPicker.tsx +++ b/apps/client/src/menus/custom-items/NoteColorPicker.tsx @@ -125,7 +125,7 @@ function CustomColorCell(props: ColorCellProps) { const isSafari = useRef(/^((?!chrome|android).)*safari/i.test(navigator.userAgent)); useEffect(() => { - colorInputDebouncer.current = new Debouncer(500, (color) => { + colorInputDebouncer.current = new Debouncer(250, (color) => { callbackRef.current?.(color); setPickedColor(color); });