Conor

Results 12 comments of Conor

The source for `Element` uses `parentBindings` to set a `ref`. https://github.com/fisshy/react-scroll/blob/50da050bc6bb02859f7afd0f754d664b109eff48/modules/components/Element.js#L10-L19 So a custom `Element` should look something like: ```jsx import React from 'react'; import { Helpers } from 'react-scroll';...

> Yes, you are right @chawes13, the readme should probably be updated. I'm happy to submit a PR if you'd like!

@balazsorban44 I'm getting around that issue by adding `tabIndex="0"` to restore the anchors to the tab order. @fisshy should this be included by default? Looks like `ignoreCancelEvents={true}` doesn't work in...

I used the [isDirty](https://redux-form.com/7.4.2/docs/api/selectors.md/#-code-isdirty-formname-string-code-returns-code-state-fields-string-gt-dirty-boolean-code-) selector as opposed to the form prop as a workaround. This seems to be giving me the correct deep comparison.

I'm getting this error when trying to upgrade to the latest`date-fns` package, which does have `main` defined in its package.json (in addition to `exports`). https://github.com/date-fns/date-fns/blob/a39b8058f777517e8040193ba597dff18765951a/package.json#L17

I'm experiencing this issue as well after upgrading from @testing-library/react@^12 to @testing-library/react@^14 and react@^17 to react@^18. Here's my stacktrace: ``` at printWarning (node_modules/react-dom/cjs/react-dom.development.js:86:30) at error (node_modules/react-dom/cjs/react-dom.development.js:60:7) at warnIfUpdatesNotWrappedWithActDEV (node_modules/react-dom/cjs/react-dom.development.js:27589:9) at...

I also tried this with `waitFor` (below) as well as invoking `cleanup` and `unmount` at the end of this specific test to no avail. ```js user.type(input, '02/02/2023{Enter}') await waitFor(() =>...

> @iqre8 read contributing file, we're using pnpm as package manager I ran into this with `npm v10.1.0` as well. The docs on https://vite-pwa-org.netlify.app/examples/ have conflicting information. It says both,...

On Node 20 with Ionic 7 and capacitor 6 and with the `--external` flag I'm seeing the "Waiting for connectivity with" info statement. If I drop the flag, then it...

I got it to work by setting `host: true` in my Vite configuration. https://github.com/vitejs/vite/discussions/3396