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 0ecda71 commit b62b76eCopy full SHA for b62b76e
2 files changed
.env
@@ -195,3 +195,5 @@ REACT_APP_DISABLE_COUNTRY_LEADERBOARD_CONFIG=''
195
196
# For setting the minimum character count for challenge instructions
197
REACT_APP_CHALLENGE_INSTRUCTIONS_MIN_LENGTH=150
198
+
199
+REACT_APP_BING_API_KEY=''
src/services/VisibleLayer/LayerSources.js
@@ -89,7 +89,7 @@ export const normalizeBingLayer = function (layer) {
89
normalizedLayer[apiKey.name] = apiKey.value;
90
} else {
91
// Community key circulating around OSM
92
- normalizedLayer.bingkey = "Arzdiw4nlOJzRwOz__qailc8NiR31Tt51dN2D7cm57NrnceZnCpgOkmJhNpGoppU";
+ normalizedLayer.bingkey = window.env.REACT_APP_BING_API_KEY;
93
}
94
95
return normalizedLayer;
0 commit comments