diff --git a/apps/client/src/menus/custom-items/ColorPickerMenuItem.tsx b/apps/client/src/menus/custom-items/ColorPickerMenuItem.tsx index 11ca42c48..729c7c50b 100644 --- a/apps/client/src/menus/custom-items/ColorPickerMenuItem.tsx +++ b/apps/client/src/menus/custom-items/ColorPickerMenuItem.tsx @@ -52,7 +52,14 @@ export default function ColorPickerMenuItem(props: ColorPickerMenuItemProps) { } -function ColorCell(props: {color: string, isSelected: boolean, isDisabled?: boolean, onClick?: () => void}) { +interface ColorCellProps { + color: string, + isSelected: boolean, + isDisabled?: boolean, + onClick?: () => void +} + +function ColorCell(props: ColorCellProps) { return