Skip to content
Advertisement

Fix .map is not a function in a functional component

I have a Textbox where I set array items to the textbox and I use it as a drop down. My code works and I am able to see the items in the drop down, however when i click on any other item apart from the first item I get the error groups.map is not a function. I set array from the API to my groups and then I try to map the items that I need into the textbox. Please see my code below and assist me to fix it.

I set my state to an empty array here

JavaScript

I handle my API call here

JavaScript

I render with my data to show in the drop down here

JavaScript

Advertisement

Answer

Try adding a new state variable to store the selected group.

JavaScript

Your handleChange function will become something like

JavaScript

And your TextField component will have it’s value changed to match the corresponding state variable:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement