From c780e9c4c3135c26e067bb1b33fb15527ec05131 Mon Sep 17 00:00:00 2001 From: Frank Calise Date: Sat, 9 Nov 2024 07:29:29 -0500 Subject: [PATCH] fix(boilerplate): remove interop definition for FlashList --- boilerplate/react-native.config.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/boilerplate/react-native.config.js b/boilerplate/react-native.config.js index 1821360fc..cb15a3f6c 100644 --- a/boilerplate/react-native.config.js +++ b/boilerplate/react-native.config.js @@ -5,18 +5,4 @@ module.exports = { // packages, you can add them to the referenced path below and uncomment this line. // "./assets/fonts/" ], - - // This prevents FlashList from rendering a large red box. - // See: https://github.com/reactwg/react-native-new-architecture/discussions/135 - // Remove when FlashList fully supports the new architecture. - // https://github.com/Shopify/flash-list/pull/550 - // - project: { - android: { - unstable_reactLegacyComponentNames: ["CellContainer", "AutoLayoutView"], - }, - ios: { - unstable_reactLegacyComponentNames: ["CellContainer", "AutoLayoutView"], - }, - }, }