rate limit error catching in convex helpers
I'm not sure the usefulness of this function
.catch((err) => {
if (isRateLimitError(err)) {
as it causes a typescript error "TypeError: cannot use 'in' operator to search for "kind" in " if non-rate limit error gets triggered.
0 Replies