Alex Anthony
Alex Anthony
Yeah the `useEffect` won't receive the `ref.current` change because mutating `ref.current` doesn't trigger a rerender (so doesn't trigger the effect again). Basically the issue is that the `ref` isn't set...
Confirmed that v20 works, not tried v21 yet.
The bug that the original fix was to address was caused by https://github.com/chakra-ui/chakra-ui/pull/1583/files * In the outline variant, when focused the input's z-index would increase to 1 * The input...
I've worked out what's going on: * The `FieldArray` helpers do more than just update the current value. They shift existing errors and touched state around because the indexes have...
For me at least, this was in a typescript project when using React as a namespace for types. The issue in the codemod is that it isn't handling `TSQualifiedName` the...
The dom-testing-library issue was opened by me :smile: it doesn't look like they're too interested in addressing it upstream. I'm just starting to have a little more time for this...
@dependabot rebase
> i think this is different from [getRowByFirstCellText('John Smith')](https://github.com/lexanth/testing-library-table-queries?tab=readme-ov-file#rows-by-first-cell-text) as i have a bunch of action columns as first columns (prepending my real data-columns) I think semantically in this case...
I've got a patch-package with this in `generateSimpleSchema` to handle this specific case: ``` if (Object.keys(appliedMetadata).length > 0) { // https://github.com/asteasolutions/zod-to-openapi/issues/248 if (Object.keys(appliedMetadata).length === 1 && appliedMetadata.nullable) { return {allOf:...