therour

Results 8 comments of therour

I found workaround based on [npm docs](https://docs.npmjs.com/cli/v7/commands/npm-install#configuration-options-affecting-dependency-resolution-and-tree-design) we can ignore the peer dependency by adding `--legacy-peer-deps` so we can install bookshelf with ```bash npm i bookshelf --legacy-peer-deps ``` or ```bash...

@itsrennyman based on [issue in objection.js](https://github.com/Vincit/objection.js/issues/2012#issuecomment-833267598) mostly the incompatibility is about typings... so the workaround wont have any effect on functionality but will be problem on typings is that right?...

@juliencrn thanks for the response, actually I got the ts error `Type 'Parameters' must have a '[Symbol.iterator]()'` I think the Generic for `DebouncedState` should be changed to ` ReturnType>` \...

OK I understand, that it can be fixed from developer perspective by memoize the callback arg ```js const debouncedIncrement = useDebounceCallback( React.useCallback(() => setValue(val) => val + 1, []), 500...

I think there is already a feature request for this https://github.com/Dokploy/dokploy/issues/1

I just updated to 1.12.0 and it still doesnt work as expected. the difference for reproducing it is that the `shallow` function is imported from `@tanstack/react-store`

@Xetera thanks, but I actually managed to solve this by returning a record instead of file in the `useStore` ```ts const { value } = useStore(field.store, (state) => { return...

this also impacts tanstack/form when storing `File` instance. https://github.com/TanStack/form/issues/1539