GitHub-Jobs-API-React-App
GitHub-Jobs-API-React-App copied to clipboard
Search input fields throw error while typing into them
I get this error whenever I try to type something inside fields.
And I found a solution:
inside App.js
file, if we replace the following line:
const [params, setParams] = useState({});
with this:
const [params, setParams] = useState({description: '', location: '', full_time: false});