diff --git a/frontend/src/features/machines/components/common/ActionButton.js b/frontend/src/features/machines/components/common/ActionButton.js index daa0f0f..8a32a74 100644 --- a/frontend/src/features/machines/components/common/ActionButton.js +++ b/frontend/src/features/machines/components/common/ActionButton.js @@ -2,7 +2,7 @@ import React from "react"; import PropTypes from "prop-types"; import { IconButton, Tooltip } from "@mui/material"; -const ActionButton = React.forwardRef((props, _ref) => { +const ActionButton = React.forwardRef(props => { const { action, machine, callback, disabled } = props; const id = `machine-item-${machine.machineId}-${action.code}`; const handleActionClick = event => {