diff --git a/v3/src/components/case-table/color-cell-text-editor.tsx b/v3/src/components/case-table/color-cell-text-editor.tsx index bc195ec848..4dfc5e9611 100644 --- a/v3/src/components/case-table/color-cell-text-editor.tsx +++ b/v3/src/components/case-table/color-cell-text-editor.tsx @@ -91,11 +91,6 @@ export default function ColorCellTextEditor({ row, column, onRowChange, onClose updateValue(event.target.value) } - function handleInputKeyDown(event: React.KeyboardEvent) { - if (event.key === "Enter") acceptValue() - if (event.key === "Escape") rejectValue() - } - function handleInputBlur() { !isPaletteOpen && acceptValue() } @@ -103,7 +98,6 @@ export default function ColorCellTextEditor({ row, column, onRowChange, onClose const swatchStyle: React.CSSProperties | undefined = showColorSwatch.current ? { background: color } : undefined const inputElt =