diff --git a/src/browser/ReactMount.js b/src/browser/ReactMount.js index 1075f15cb6..ccc993f5a1 100644 --- a/src/browser/ReactMount.js +++ b/src/browser/ReactMount.js @@ -484,10 +484,12 @@ var ReactMount = { // warning is when the container is empty. rootElementsByReactRootID[reactRootID] = containerChild; } else { - console.warn( - 'ReactMount: Root element has been removed from its original ' + - 'container. New container:', rootElement.parentNode - ); + // Disabled for now until #3436441 is fixed. + // + // console.warn( + // 'ReactMount: Root element has been removed from its original ' + + // 'container. New container:', rootElement.parentNode + // ); } } }