mobx-react-devtools icon indicating copy to clipboard operation
mobx-react-devtools copied to clipboard

dev tools dont show up in 6.1.1

Open pdeva opened this issue 6 years ago • 2 comments

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>

pdeva avatar Mar 05 '19 17:03 pdeva

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

mweststrate avatar Mar 18 '19 09:03 mweststrate

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

pdeva avatar Apr 02 '19 20:04 pdeva