Jaen
Jaen
The "Recently closed" menu is built into Firefox, and there is no way to extend it unfortunately. Firefox does not preserve the "title preface" property of the window when it...
Also, the text is cut off  and in certain scroll positions has unreadable color contrast: 
testing-library/user-event looks unmaintained at the moment, no pull requests merged for ~7 months, no response to [a question asking about maintenance status](https://github.com/testing-library/user-event/issues/1202) for over a month. Not really a good...
Ran into a similar issue as well. Anything involving the `subprocess` module with pipes / `capture_output` will hang when run inside the Gunicorn master process (in a background thread). This...
It's not really about the use case (of course there are use cases), it's about the API behaving in surprising and undocumented ways. Example use cases: * A function that...
That works, but is less efficient and doubles the clutter in the React debug panel.
Wrapper types such as `.readonly()`, `.refine()` etc. *always* need to be unwrapped before `.shape`, `pick` etc. can be used. In this case, the shape is accessible as `readonlySchema.unwrap().shape`.
Also just ran into this, makes it quite difficult to debug trivial requests. Since most bodies are small, a quick fix would be to just show eg. the first 200...
Yeah, hot reloading is broken now for specs, _immediately_ ran into this after upgrading to Zod v4 in a Vite app. Any schema change on a registered schema will throw...
It's supported, AFAIS. The `CurrencyInput` component uses `forwardRef`, so you can treat it as a regular `HTMLInputElement` ref.