Stevan Borus

Results 14 comments of Stevan Borus

Same problem. But only on ios. Can't click on the text of the video or the youtube button. I can only click on the profile button top left. And then...

Posting this because I couldn't find a solution for this on issues. I created a little workaround, maybe you could use this. I need to click on a ``. I...

Could either https://github.com/gustavopch/tsc-files/pull/28 or https://github.com/gustavopch/tsc-files/pull/48 be checked and merged so this issue can be resolved?

Just stumbled upon this issue in my app.. Try ```tsx import { isbot } from 'isbot'; ``` instead of ```tsx import isbot from 'isbot'; ``` It resolved the problem for...

I figured out that I get this error on a regular loader too since I moved it outside the lazy loaded module. `makeLoader` doesn't solve the problem on both of...

> and you’re saying it doesn’t error on a regular createBrowserRouter call? Yup I made this real quick.. not sure what is going on with the type of `typesafeBrowserRouter` in...

When I define the generic on `makeLoader` with `LoaderFunction` it works and I don't get the error anymore.. Like this: ```jsx export const dashboardLoader = (queryClient: QueryClient) => makeLoader(() =>...

Found out what the actual issue is and I've changed the code in the codesandbox repro. As you can see, I get the error when I lazy load only the...