Issue with useSuspenseQuery for queries that accept args
.get() function. It seems the output type is incorrect when being passed to useSuspenseQuery, and my application in stuck in a Loading... state if I attempt to run this. I've tried:- Passing an empty object
- Passing
skip and nothing else- Passing
{ id: selectedNoteId ?? '' }The type error persists. Interestingly, I don't see a type error for queries that don't accept args, like my
list query. That query also runs successfully with suspenseSource: https://github.com/bholmesdev/convex-debugging/blob/main/src/App.tsx#L13
