Once I run the below code, I get the following error:
React Hook useEffect has a missing dependency: \'list\'. Either include it or remove the depende
Inside your useEffect you are logging list:
list
console.log(list);
So you either need to remove the above line, or add list to the useEffect dependencies at the end. so change this line
}, [term]);
to
}, [term, list]);