diff --git a/frontend/src/components/TaskCard.jsx b/frontend/src/components/TaskCard.jsx index 67d81ac..50333b0 100644 --- a/frontend/src/components/TaskCard.jsx +++ b/frontend/src/components/TaskCard.jsx @@ -1,13 +1,11 @@ import React from 'react'; -const TaskCard = ({ task, onEdit }) => { +const TaskCard = ({ task, onEdit, onDelete }) => { return (

{task.title}

- {/* This comment will disable the 'no-undef' error for the next line only */} - {/* eslint-disable-next-line no-undef */}

{task.description}