Danny Braunstein

Results 11 comments of Danny Braunstein

:+1: yep, the documentation needs to be updated ..

Hey @AbhiPrasad, I noticed in your example even if i take off `tracingOrigins` its still doesn't send, but in my project its consistently send these props in the header.

> Unfortunately, without a repro app it’s really hard for us to tell what’s going on - is it possible for you to share one? Yes, it's a private project,...

@lobsterkatie > @Danny-weebo Can you please add the following to your code, right after `Sentry.init()`, and see what shows up in the console? > > ```js > console.log("tracingOrigins:", > Sentry.getCurrentHub().getClient()?.getIntegrationById("BrowserTracing")...

Hey, there isn't any solution for this yet ? if not, a direction how to make it work will be very appreciated :) thanks

you need to override the `handleInputOnBlur` https://github.com/hibiken/react-places-autocomplete/blob/master/src/PlacesAutocomplete.js#L240, ``` ref={c => { if (!c) return; c.handleInputOnBlur = () => {}; }} ```

> @Danny-weebo > where do add this ? In autocomplete component

hey @vidur149, I'm not sure if it's a question or statement 😕 anyway if you are trying to prevent the clear of suggestions on "click away" you can override [`handleInputOnBlur()`](https://github.com/hibiken/react-places-autocomplete/blob/master/src/PlacesAutocomplete.js#L240)...

@ray-su, ``` { refObj.clearSuggestions = () => {}; refObj.handleInputOnBlur = () => {}; } > ``` i'd prefer to use `react.createRef()` and not to do it in the element itself,...