``` const axiosIns = axios.create({ responseType:'text' }); axiosIns({ method: 'get', url: 'test' }).then(data=>{ console.log(typeof data.data);//print "object".should be "string"? return data.data; }); ``` Anyone can fix this?