The error is telling you that you are making requests to an endpoint that is not secure (i.e HTTP rather than HTTPS).
You should review the code for your project and check for any endpoints that you are requesting over HTTP and switch to requesting them via their HTTPS endpoint.
On an HTTPS webpage you can only make AJAX requests to a HTTPS webpage.