'axios https call now working, why it always takes to https?

i am working on react axios, i run the axios call, you can see i setup the http api call, but when i run the code, it call https api, can anyone please help me why it is doing that ? any help will be really appreciated.

await axios({
            method: 'Post',
            //url: `${helper.ApiUrl}auth/signin`,
            url : 'http://xx.xx.xx.xx/',
            responseType: 'json',
            // withCredentials: true,
            // credentials: 'same-origin',
            headers: {
                "Access-Control-Allow-Origin": "*",
                'Access-Control-Allow-Credentials': 'true',
                "Access-Control-Allow-Headers": "Content-Type, Authorization",
                mode: 'no-cors',

            },
            data: {
                'email': email,
                'password': password,
            }

        }).then((response) => {
            res = response
        });


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source