We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8a37d4 commit b39cf85Copy full SHA for b39cf85
src/services/proxy.js
@@ -69,9 +69,9 @@ class ProxyService {
69
...headers,
70
};
71
if (process.env.COINGECKO_KEY_TYPE === "pro") {
72
- headers["x_cg_pro_api_key"] = process.env.COINGECKO_API_KEY;
+ _headers["x_cg_pro_api_key"] = process.env.COINGECKO_API_KEY;
73
} else {
74
- headers["x-cg-demo-api-key"] = process.env.COINGECKO_API_KEY;
+ _headers["x-cg-demo-api-key"] = process.env.COINGECKO_API_KEY;
75
}
76
const response = await axios({
77
method,
0 commit comments