From 17cf2486887dc1da2d39ba6eac51025bc325e593 Mon Sep 17 00:00:00 2001 From: Sandeep Kumar Date: Fri, 28 Feb 2025 23:17:03 +0530 Subject: [PATCH] NTP-43371 | rn_fix (#15224) --- index.ios.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/index.ios.js b/index.ios.js index c59ffb97f1..245159cb38 100644 --- a/index.ios.js +++ b/index.ios.js @@ -1,9 +1,4 @@ import { AppRegistry } from "react-native"; -import codePush from "react-native-code-push"; import App from "./App"; -let codePushOptions = { - installMode: codePush.InstallMode.IMMEDIATE, -}; - -AppRegistry.registerComponent("NaviApp", () => codePush(codePushOptions)(App)); +AppRegistry.registerComponent("NaviApp", () => App);