Andelko Cvjetkovic

Results 12 comments of Andelko Cvjetkovic

```js //ApiActionGetWorkshopCancelable :: string -> Task export const ApiActionGetWorkshopCancelable = workshopId => task(resolver => { const abortController = new AbortController(); API(abortController) .get(`/workshops/${workshopId}`) .then(resolver.resolve) .catch(e => !resolver.isCancelled && resolver.rejected(e)); resolver.onCancelled(() =>...

I'm on `"@tanstack/react-router": "1.28.1"`, so I don't think it is related

The issue is present in ` "@tanstack/react-router": "1.31.1"` as well

My question is why I'm getting an 'Uncaught Error' in my console. Is this something I should take care of, and how precisely should I handle this? Thanks.

I already had this in ``. I solved it with multiple containers, but it would be great if the library handled this for us.

Hello, useForm has the mode prop which does this, maybe it can be added here to. https://react-hook-form.com/docs/useform#mode

@clauderic any update ?

I'm facing the same issue, did you find a solution ?

I found this, https://github.com/clauderic/dnd-kit/issues/1108. It solved my problem