I am trying to set cookies, but they are not being set on the browser, but they do when I use postman to call the request.
Both sever & client run on HTTP. I can see the cookies being set in the response of the request in the network tab, but on application tab -> cookies localhost:3000 are not being set.
Thats how I set my cookies:
And that's how I call the request with react:
Why are the cookies not being set? Is there something wrong?

