Workflows Webhook Request request problem in Custom Component

I sent it in application/json format, but why does it keep changing to text/plain format?

retool custom component code

I sent it in application/json format, but why does it keep changing to text/plain format?

Hey @Will_Heo!

Using no-cors is incompatible with content types other than application/x-www-form-urlencoded, multipart/form-data or text/plain. Any other Content-Type header will be replaced with text/plain (see this article).

If you're trying to navigate CORS issues you might try using a REST query that you trigger from inside your component :thinking: Curious to hear more about your use case!

Kabirdas Your help is greatly appreciated.
I realized after reading the no-cors article you linked. I had my proxy server running and I was processing cors there, but I had to send it in the form of cors and application/json. Thanks, I fixed the problem right away this morning.
Thank you again!