What is wrong with my Filter and Map function as its not filtering the correct item inside my React Component?
Solution 1:
MenuItems.filter((item) => "Drinks")
return always true
What you should be doing is comparing the category to drinks.
MenuItems.filter((item) => item.category === "Drinks")