HttpClient CORS Error with Client.get() vs Fetch

When using Effect's HttpClient, for some endpoints I get CORS errors that I do not get when using fetch(). how do I make the HttpClient's client.get() behave has similar to fetch as possible?

EDIT: I made a small example that shows the difference in CORS behavior: https://effect.website/play#5361325a0550

If you open the web inspector you can clearly see how the fetch() version succeeds, but the HttpClient version fails
Was this page helpful?