diff --git a/src/actions/actionExport.tsx b/src/actions/actionExport.tsx index 015e5216..a566e5bf 100644 --- a/src/actions/actionExport.tsx +++ b/src/actions/actionExport.tsx @@ -244,7 +244,7 @@ export const actionLoadScene = register({ } }, keyTest: (event) => event[KEYS.CTRL_OR_CMD] && event.key === KEYS.O, - PanelComponent: ({ updateData, appState }) => ( + PanelComponent: ({ updateData }) => ( { diff --git a/src/components/ColorPicker.tsx b/src/components/ColorPicker.tsx index 76a66b5b..22f9eb26 100644 --- a/src/components/ColorPicker.tsx +++ b/src/components/ColorPicker.tsx @@ -343,6 +343,8 @@ const ColorInput = React.forwardRef( }, ); +ColorInput.displayName = "ColorInput"; + export const ColorPicker = ({ type, color, diff --git a/src/components/ToolButton.tsx b/src/components/ToolButton.tsx index 328c135c..7077898f 100644 --- a/src/components/ToolButton.tsx +++ b/src/components/ToolButton.tsx @@ -187,3 +187,5 @@ ToolButton.defaultProps = { className: "", size: "medium", }; + +ToolButton.displayName = "ToolButton";