Search code examples
javascriptreactjsreact-nativewarningsmobile-application

isMounted() warning keeps showing in after upgrading to React Native 0.55.4


I am seeing isMounted() warning after I upgraded to latest React Native version 0.55.4.

enter image description here


Solution

  • Add the below code to your root index.js file.

    import { YellowBox } from 'react-native';
    YellowBox.ignoreWarnings(['Warning: isMounted(...) is deprecated', 'Module RCTImageLoader']);