im using axios to fetch data form an api. and to make delete request.
here is what the array looks like:

i can get this array by using
const { data } = await axios.get('http://ipadress:5000/api/categories/61cae5daf5bfbebd7cf748ee')
and delete it using:
await axios.delete(`/api/categories/${61cae5daf5bfbebd7cf748ee}`)
my qeustion is how can i delete one object from the array. for example the 'Jewelry' object.