Kenta Iwasaki

Results 55 comments of Kenta Iwasaki

@SeanCassiere was able to reproduce it in the sandbox you linked. Navigating to /posts and refreshing the page causes a hydration error and: `PostsIndexComponent.context undefined`

Wanted to bump with the recent #1907 being merged, that this issue still exists. With the code snippet `Route.useRouteContext({ select: (ctx) => { console.log(ctx); return ctx; })`, `ctx` will, initially...

@tannerlinsley I posted a question recently on Discord that could describe the use case of wanting to serialize "some" asynchronous context values to the client in the case of accessing...

What do you think about making href optional for components if routerOptions is provided? For both Tanstack Router and React Router, routerOptions is solely needed in order to be able...

Realized there are a few more things that need to have "type" prefixed to it - working on it now.

@lorisleiva currently stuck on a final bug and wondering if you might know the cause - enum scalars that are defined appear to be duplicated twice in imports. One with...

(!) Didn’t realize there was a monorepo for Kinobi - I’ll do it and see if hopefully it’s easier to integrate with the updated code. Enjoy your travels!

Things I believe to be true from reading the source code: 1. AFAIK `transformer` can return Promise/Stream objects should the transformer support it. It must be able to hydrate/dehydrate them....

I'm not too familiar with how Apollo Client handles hydration/dehydration, but from a quick cursory look at the docs: Server-side: ```ts // Add this import to the top of the...

It looks like what needs to be done to check if an element is focusable/tabbable is a lot more complex than it seems vs. the checks in `getFocusableTreeWalker()`: https://allyjs.io/data-tables/focusable.html#object-element In...