You'll get TypeError: cookies.search.map is not a function
There'll likely an issue with accessing the search property of the cookies object. The error suggests that cookies.search is not an array, hence you cannot call the map function on it.
To handle this error, you can ensure that cookies.search is properly initialized as an array before attempting to map over it. Here's how you can modify the code to handle this:
{Array.isArray(cookies.search) && cookies.search.map((text, index) => (
<li key={index}>{text}</li>
))}
This modification ensures that cookies.search is an array before attempting to call the map function on it. If cookies.search is not an array, the map function will not be executed, preventing the TypeError.