Andrei
Andrei
Found a temporary solution. Clone falcon_cors from GitHub, and in __init.py__ change _get_resource_methods function, so `hasattr(resource, 'on_' + method.lower())` becomes `next((s for s in dir(resource) if method.lower() in s), None)`....
Got it. The reason I'm asking is, when for instance the loaders take a while to refetch, there's a moment when the response from the action is received (an so...
True. On the other hand, if `isSubmitting` only reflects the `submitting` navigation state, there will be a moment between the response from the action and redirect, where a form is...
I wouldn't go far from the original `react-hook-form` API:  But it's up to @AlemTuzlak to decide. Now when I have used the library enough...
Same here. After upgrading to `1.1.8` can't `bun add` in a workspace package. The workaround I could think of is manually adding a dep to `package.json` and then running `bun...
@mariusbolik the upgraded version of the middleware that uses Clerk Core v2 is now available. Could you please update and confirm the issue persists with the new version?
Oh my lovely TypeScript:) Corrected to `../..`. Seems to be working too.
But now Deno is not happy... 
@yusukebe hi! Seems like #2662 is merged now, can we resume the work on this PR?
As a matter of fact, I checked other built-in middleware (like `timing`) that also set context variables via ` declare module '../../context'` and the issue seems to also be present....