Replies: 4 comments 2 replies
-
Hey @mwdiaz Did you try and find any issue? |
Beta Was this translation helpful? Give feedback.
2 replies
-
opened #643 to fix |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks! I just checked and the TypeScript errors are gone 👍 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have some asynchronous logic that we'd like to run in order to determine whether there's a specific scenario where we'd want to proactively cancel an upload. While it would certainly be possible to put this logic in a
useRequestPreSend
hook, the current structure of our state management is such that it would be vastly more simple (and preferable, since it wouldn't require refactoring anything) if this specific check could be done inuseItemStartListener
instead ofuseRequestPreSend
.I'm curious if there's a technical reason why this wouldn't be possible, especially since
useBatchStartListener
supports an asynchronous callback. Thanks!Beta Was this translation helpful? Give feedback.
All reactions