From 15a18d9dd3f944c07e161be9367283e8fc5f6b67 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 8 Mar 2023 14:32:11 -0600 Subject: [PATCH] Disable the 'require cycle' warning --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index fb278a556d..14d524cca2 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,6 @@ +import {LogBox} from 'react-native' +LogBox.ignoreLogs(['Require cycle:']) // suppress require-cycle warnings, it's fine + import 'platform/polyfills' import {registerRootComponent} from 'expo'