Alex Gorbatchev

Results 95 comments of Alex Gorbatchev
trafficstars

@dennari curious, were you able to find a suitable solution?

Curious how often do S3 uploads fail?

I personally feel that the way the modal pattern is handled in react-router is basically a very inconvenient patch-job. It's a very common pattern for modals/drawers/etc to be visible at...

This took some times to figure out, hope it will help someone. To get basic modal functionality in v6 you can do something like this: ```tsx ``` The [modal example](https://github.com/remix-run/react-router/blob/main/examples/modal/src/App.tsx)...

@ZachMayry by "full screen" i didn't mean visually full screen. In the [example](https://github.com/remix-run/react-router/blob/main/examples/modal/src/App.tsx) if you navigate directly to `/img/:id` you see the image only, but if you click on a...

`HeaderNavigation` types still don't allow children. PR to fix this issue #5180. In the mean time it could be fixed via ```ts const HeaderNavigationFix = (props: React.PropsWithChildren) => ; ```

@mikeric seems like worthy effort. Thoughts?

Without `node_modules` excluded I think this plugin isn't very useful. I think majority of builds using webpack would be pulling files in from `node_modules`.

Here's another workaround ```tsx const ReactSuspense = ({ children }: { children: React.ReactNode }) => {children}; export function withSuspense( story: PartialStoryFn, ctx: StoryContext, ) { return ( {story(ctx)} ); }...