Maksim Zaborovskiy
Maksim Zaborovskiy
UPD. Found a workaround by setting `directiveValidation: false`, in my case it doesn't matter as I don't use directive mercurius validation. For gql type `CreateInput` args `nums` and `description` are...
Tree shaking not working when running application using remix-fastify. https://github.com/ziimakc/remix_tree_shaking Steps to reproduce: - run `pnpm i` - run `pnpm build` - run `pnpm start` - open browser network tab...
### Which package is affected? Headless Kit ### Describe the bug I assume because of lazy loading library components become painfully slow. For example clicking on checkbox takes a **second**...
### Which package is affected? Styled Kit ### Describe the bug With `exactOptionalPropertyTypes: true` typescript config input component id can't be `undefined`. To avoid similar issues I would suggest to...
### Which component is affected? Qwik Runtime ### Describe the bug When you visit qwik website first time every action (button click, menu open) has a delay from 0.1-1 sec....
### Which component is affected? Qwik Rollup / Vite plugin ### Describe the bug When using esm import `.js` or `.jsx` extensions is required. Trying to follow this requirement qwik...
If you want ssr only on first render for seo and then go spa mode, using `loader` and `clientLoader` at the same time (after first render `loader` will be skipped...
Is there a way to get text from `PDFiumObject`?
## Problem Every time you do operation with prisma-client it will make unnecessary select and return value Query: ``` db.log .create({ data: { smth: 1 }, select: { uuid: true...
Maybe we can have `useLazyMutation` similar to [react-query](https://tanstack.com/query/latest/docs/framework/react/guides/mutations). ``` function AddTodo() { const [addTodo, { data, loading, error }] = useMutation(ADD_TODO); return ( { e.preventDefault(); // this is a problem...