From e2d5ae9cbe64be97861f18a288e6f8b6ed6ba1ed Mon Sep 17 00:00:00 2001 From: Igor Bejnarowicz Date: Tue, 31 Oct 2023 06:36:46 +0100 Subject: [PATCH] fix: unnecessary comma in MainActivity.java --- .../app/src/main/java/com/pagerviewexample/MainActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/android/app/src/main/java/com/pagerviewexample/MainActivity.java b/example/android/app/src/main/java/com/pagerviewexample/MainActivity.java index e66f2e8a..454c5320 100644 --- a/example/android/app/src/main/java/com/pagerviewexample/MainActivity.java +++ b/example/android/app/src/main/java/com/pagerviewexample/MainActivity.java @@ -32,7 +32,7 @@ protected ReactActivityDelegate createReactActivityDelegate() { this, getMainComponentName(), // If you opted-in for the New Architecture, we enable the Fabric Renderer. - DefaultNewArchitectureEntryPoint.getFabricEnabled(), // fabricEnabled + DefaultNewArchitectureEntryPoint.getFabricEnabled() // fabricEnabled // If you opted-in for the New Architecture, we enable Concurrent React (i.e. React 18). // DefaultNewArchitectureEntryPoint.getConcurrentReactEnabled() // concurrentRootEnabled // TODO: why has this been deleted? );