han-sz
Results
3
comments of
han-sz
I've noticed this issue when moving from chakra-ui `2.2.6` (tests run fine) to `2.3.4` and above (tests are broken) In `2.3.5` (~4 failing) and in `2.3.4` (1 failing), they both...
**Workaround for now** A workaround is to load the component that triggers the issue dynamically with `React.lazy` and `import`: ``` React.lazy(() => import('../components/MySelect`)) ``` where `MySelect` is the component that...
Thanks @AudricV, looks good to me!