- When I initialize my google api key hard code into the geocoder it works fine.
const GOOGLE_API_KEY = Config.GOOGLE_API_KEY;
Geocoder.init("my google api key"); it works fine
- it fails when referenced from the config env settings in the from the origin code:
const GOOGLE_API_KEY = Config.GOOGLE_API_KEY;
Geocoder.init(GOOGLE_API_KEY);