Prooksius

Results 8 comments of Prooksius

Hope this helps. locate and remove this loaded recaptcha script while unloading wrapping component GoogleReCaptchaProvider. Like this: ```javascript const scriptSelector = 'script[src=\'https://www.google.com/recaptcha/api.js?render=' + recaptchaSiteKey + '\']'; const script = document.querySelector(scriptSelector);...

Try [this](https://github.com/t49tran/react-google-recaptcha-v3/issues/182#issuecomment-1756820488) Without any third party component. I did it, not exactly as described, but similar. Everything is just fine.

Hope this helps. locate and remove this loaded recaptcha script while unloading wrapping component GoogleReCaptchaProvider. Like this: ```javascript const scriptSelector = 'script[src=\'https://www.google.com/recaptcha/api.js?render=' + recaptchaSiteKey + '\']'; const script = document.querySelector(scriptSelector);...

Please advise if there are any plans for websocket for bybit.

Experiencing the same in next js v13 project. Everything is fine in dev mode, in production search stops being reactive, app does nothing when search string changes.

Another way to do this: 1) define a ref for DateRange component and set the appropriate ref prop of DateRange; 2) call dateRangeRef.current.calendar.changeShownDate(some new date);

Sometimes we need to keep YAxis component on the second graph (when domain is defined) and hide it with "hide" property.

@stefan-stankovic try [this](https://github.com/recharts/recharts/issues/1364#issuecomment-2608588147) Point is that we use two charts there, one is with YAxis only and fixed. And another is without YAxis and scrollable.