Andrei

Results 23 comments of 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: ![CleanShot 2024-01-11 at 21 37 45](https://github.com/Code-Forge-Net/remix-hook-form/assets/16190582/e85cf617-98df-48e0-ac5d-490fa9917c7a) 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... ![CleanShot 2024-05-18 at 06 02 53@2x](https://github.com/honojs/hono/assets/16190582/c4670b7f-3f26-47db-aa1e-53baf6d4c701)

@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....