diff --git a/native/components/nux-handler.react.js b/native/components/nux-handler.react.js --- a/native/components/nux-handler.react.js +++ b/native/components/nux-handler.react.js @@ -10,6 +10,8 @@ import { useSelector } from '../redux/redux-utils.js'; import { useOnFirstLaunchEffect } from '../utils/hooks.js'; +const showTipsFlag = false; + function NUXHandler(): React.Node { const nuxTipsContext = React.useContext(NUXTipsContext); invariant(nuxTipsContext, 'nuxTipsContext should be defined'); @@ -17,7 +19,7 @@ const loggedIn = useSelector(isLoggedIn); - if (!tipsProps || !loggedIn) { + if (!tipsProps || !loggedIn || !showTipsFlag) { return null; }