feat(api-keys): Replace Google Places API key with Google Maps API key across the application
This commit is contained in:
@@ -262,7 +262,7 @@ class HubRepositoryImpl
|
||||
<String, String>{
|
||||
'place_id': placeId,
|
||||
'fields': 'address_component',
|
||||
'key': AppConfig.googlePlacesApiKey,
|
||||
'key': AppConfig.googleMapsApiKey,
|
||||
},
|
||||
);
|
||||
try {
|
||||
|
||||
@@ -25,7 +25,7 @@ class HubAddressAutocomplete extends StatelessWidget {
|
||||
return GooglePlaceAutoCompleteTextField(
|
||||
textEditingController: controller,
|
||||
focusNode: focusNode,
|
||||
googleAPIKey: AppConfig.googlePlacesApiKey,
|
||||
googleAPIKey: AppConfig.googleMapsApiKey,
|
||||
debounceTime: 500,
|
||||
countries: HubsConstants.supportedCountries,
|
||||
isLatLngRequired: true,
|
||||
|
||||
Reference in New Issue
Block a user