mobxjs / mobx-react-devtools

[DEPRECATED] Tools to perform runtime analyses of React applications powered by MobX and React
MIT License
1.23k stars 49 forks source link

dev tools dont show up in 6.1.1 #112

Open pdeva opened 5 years ago

pdeva commented 5 years ago

upgrading from 6.0.3 to 6.1.1, the dev tools no longer show up in the top right corner.

my code to load them:


const DevTools = React.lazy(() =>
            process.env.NODE_ENV === "production" ? 
Promise.resolve({default: () => null}) : (import("mobx-react-devtools") as any)
        );
<React.Suspense fallback={null}>
    <DevTools/>
</React.Suspense>
mweststrate commented 5 years ago

I couldn't reproduce this, could you create a reproduction in a code sandbox?

pdeva commented 5 years ago

ohh its seems its been moved to bottom right. please document this. i only found this now.