Evgeny Bobkin
Evgeny Bobkin
I have configured compilation to use `Latexmk`, however gummi is not able to produce any build build log contains something like: This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian) restricted...
Is this a dead project?
Argument of type '() => Promise<void>' is not assignable to parameter of type 'TransitionFunction'
I have recently discovered that the transition function can not be `async` according to the docs https://react.dev/reference/react/useTransition#react-doesnt-treat-my-state-update-as-a-transition ```ts startTransition(async () => { ... } ``` if you update your typing...
how to to support both form and json body with `zValidator`? docs say that multiple validators can be used together i.e. ```ts app.post( '/posts/:id', validator('param', ...), validator('query', ...), validator('json', ...),...