From 93512eb6665e7d35660db133319be54ed1c09232 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Mon, 15 Jul 2024 21:58:23 -0400 Subject: Update Chore view --- src/views/Chores/ChoreCard.jsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'src/views/Chores/ChoreCard.jsx') diff --git a/src/views/Chores/ChoreCard.jsx b/src/views/Chores/ChoreCard.jsx index 08a5406..6edcbd3 100644 --- a/src/views/Chores/ChoreCard.jsx +++ b/src/views/Chores/ChoreCard.jsx @@ -38,7 +38,7 @@ import moment from 'moment' import React, { useEffect } from 'react' import { useNavigate } from 'react-router-dom' import { API_URL } from '../../Config' -import { MarkChoreComplete } from '../../utils/Fetcher' +import { MarkChoreComplete, SkipChore } from '../../utils/Fetcher' import { Fetch } from '../../utils/TokenManager' import ConfirmationModal from '../Modals/Inputs/ConfirmationModal' import DateModal from '../Modals/Inputs/DateModal' @@ -521,13 +521,7 @@ const ChoreCard = ({ { - Fetch(`${API_URL}/chores/${chore.id}/skip`, { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - body: JSON.stringify({}), - }).then(response => { + SkipChore(chore.id).then(response => { if (response.ok) { response.json().then(data => { const newChore = data.res -- cgit