Skip to content

Commit

Permalink
fix: unused arguments in component
Browse files Browse the repository at this point in the history
  • Loading branch information
alecorvec committed Nov 20, 2024
1 parent 709e99b commit 64d7e9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import PropTypes from 'prop-types';
* @param {Object} orderDetails Object used to persist detail and ingredient choices of a current food
* @param {function} setOrderDetails state function to update the orderDetails object
*/
function NewIngredientList({data, orderDetails, setOrderDetails}) {
function NewIngredientList({data}) {

// const [fullData, setFullData] = useState(data.map((elem => {
// return {
Expand Down

0 comments on commit 64d7e9a

Please sign in to comment.