```tsx const geocoder = useGeocodingService(); const handleOnClick = async () => { const x = await geocoder?.geocode({ location: { lat: 59.27240992362248, lng: 15.213029186736854 }, }); console.log(x?.results); //undefined }; ```