Kait Moreno

Results 5 comments of Kait Moreno

I have the following code in my jest setup file so it's configured globally and only effects the test environment: ```javascript import sizeMe from "react-sizeme"; sizeMe.noPlaceholders = true; ```

I experienced a similar issue. I was using `` as a direct child of `` which caused an infinite loop in my application.

I am also seeing this console error. Here is the full stack trace: ![image](https://user-images.githubusercontent.com/22768918/43902397-fea19ab4-9bb7-11e8-9a90-9d01fc135824.png)

For future travelers using HashRouter - my workaround was to disable location updates altogether by patching the MenuStore activate function. Navigation still works, you just don't get the url state:...