Lucas Genzelis
Lucas Genzelis
### Describe the bug I found a bug with `useInfiniteQuery`. If an update is performed to an old page (using `setQueryData`) while a newer page is being fetched, the update...
This addresses #114
Hey @mjhea0 ! Congrats on the awesome library, thanks a lot for creating it. This proposal is related to #113 , but I'm specifically interested in the threshold option passed...
`npm exec` doesn't seem to work with `npm 6`. `npx`, OTOH, does the job just fine.
### Current behavior Currently, calling `cy.screenshot()` during a test will use the viewport dimensions (specified in `cypress.config.js`) if the test is run using "headed" mode. However, when using headless mode:...
I'm using `"eslint-plugin-i18next": "6.0.1"`. My use case: I want to forbid string literals in children and aria-labels. So, this is my config: ```javascript 'i18next/no-literal-string': [ 'error', { "mode": 'jsx-only', 'jsx-attributes':...
Related to https://github.com/edvardchen/eslint-plugin-i18next/issues/109
Hi! As part of #233, [this piece of logic was introduced](https://github.com/cypress-visual-regression/cypress-visual-regression/blob/master/src/command.ts#L77): ```ts const nameSanitized = name.replace(/[^a-z0-9]/gi, '_').toLowerCase() ``` Unfortunately (for me :P ), that messes up with my snapshot filenames....
### Describe the bug [Per the docs](https://tanstack.com/query/latest/docs/reference/QueryClient#queryclientinvalidatequeries), the default behavior of `invalidateQueries` should be that if a query gets invalidated while it's being fetched, then the queryFn should be called...