diff --git a/patches/react-native/details.md b/patches/react-native/details.md index 6bcf85cc1c8a..e24d57d680b3 100644 --- a/patches/react-native/details.md +++ b/patches/react-native/details.md @@ -51,13 +51,6 @@ - E/App issue: 🛑 - PR Introducing Patch: 🛑 -### [react-native+0.83.1+008+iOSCoreAnimationBorderRendering.patch](react-native+0.83.1+008+iOSCoreAnimationBorderRendering.patch) - -- Reason: Fixes border rendering issues with Core Animation on iOS -- Upstream PR/issue: 🛑 -- E/App issue: 🛑 -- PR Introducing Patch: 🛑 - ### [react-native+0.83.1+009+copyStateOnClone.patch](react-native+0.83.1+009+copyStateOnClone.patch) - Reason: Ensures state is properly copied when cloning components diff --git a/patches/react-native/react-native+0.83.1+008+iOSCoreAnimationBorderRendering.patch b/patches/react-native/react-native+0.83.1+008+iOSCoreAnimationBorderRendering.patch deleted file mode 100644 index 478e282e387d..000000000000 --- a/patches/react-native/react-native+0.83.1+008+iOSCoreAnimationBorderRendering.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff --git a/node_modules/react-native/React/Fabric/Mounting/RCTMountingManager.mm b/node_modules/react-native/React/Fabric/Mounting/RCTMountingManager.mm -index b4cfb3d..fdfae56 100644 ---- a/node_modules/react-native/React/Fabric/Mounting/RCTMountingManager.mm -+++ b/node_modules/react-native/React/Fabric/Mounting/RCTMountingManager.mm -@@ -265,6 +265,9 @@ static void RCTPerformMountInstructions( - - auto surfaceId = mountingCoordinator.getSurfaceId(); - -+ [CATransaction begin]; -+ [CATransaction setValue:(id)kCFBooleanTrue forKey:kCATransactionDisableActions]; -+ - mountingCoordinator.getTelemetryController().pullTransaction( - [&](const MountingTransaction &transaction, const SurfaceTelemetry &surfaceTelemetry) { - [self.delegate mountingManager:self willMountComponentsWithRootTag:surfaceId]; -@@ -278,6 +281,8 @@ static void RCTPerformMountInstructions( - _observerCoordinator.notifyObserversMountingTransactionDidMount(transaction, surfaceTelemetry); - [self.delegate mountingManager:self didMountComponentsWithRootTag:surfaceId]; - }); -+ -+ [CATransaction commit]; - } - - - (void)setIsJSResponder:(BOOL)isJSResponder