diff --git a/src/views/Chores/ChoreCard.jsx b/src/views/Chores/ChoreCard.jsx index bbe8757..3d30f76 100644 --- a/src/views/Chores/ChoreCard.jsx +++ b/src/views/Chores/ChoreCard.jsx @@ -995,7 +995,9 @@ const ChoreCard = ({ onCompleteWithPastDate={() => onAction('completeWithPastDate', chore) } - onAction={type => onAction(type, chore)} + onAction={(type, chore, extraData) => + onAction(type, chore, extraData) + } onChangeAssignee={() => onAction('changeAssignee', chore)} onChangeDueDate={() => onAction('changeDueDate', chore)} onWriteNFC={() => onAction('writeNFC', chore)}