WouterV
WouterV
I started building this feature: https://codesandbox.io/s/react-svg-pan-zoom-testing-wm6ssl (and abandoned it, because it's not really a must-have for our app) But intercepting the value in `onPan` gets quite janky because the UI...
What I figured out so far: ``` const zoomLevel = zoomPanValues.a; const xTranslation = zoomPanValues.e; const yTranslation = zoomPanValues.f; ```
Ok that helps! I did some debugging by building the package myself with some adjustments, it seems the problem is with the fetch being made, and not the response to...
> I'm also experiencing this, with the side effect that mounting the app inside the iframe again means we create double api calls, logging `Failed To Fetch` errors from the...
@aftab470 I did install it using npm cmd. But I still don't understand what's happening. Also the documentation on this project is not exactly extensive.
Here's the `` that OP posted, the problem is in the sequence of `if()/switch`-statements: ``` const Routes = () => { const auth = useAuth(); switch (auth.activeNavigator) { case "signinSilent":...