From 824e2deae04e99895d462a5eaeee472f5bbd3725 Mon Sep 17 00:00:00 2001 From: Sam Zhou Date: Thu, 15 May 2025 11:45:46 -0700 Subject: [PATCH] Remove unused `forwardRef` import in `SectionListModern` (#51373) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51373 Followup of https://github.com/facebook/react-native/pull/51360 Changelog: [Internal] Reviewed By: marcoww6 Differential Revision: D74825642 fbshipit-source-id: 1ba8f4f1934279a0be484b7809cadeacee03d59d --- packages/react-native/Libraries/Lists/SectionListModern.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/Libraries/Lists/SectionListModern.js b/packages/react-native/Libraries/Lists/SectionListModern.js index a86d8b8a511..2d89633c868 100644 --- a/packages/react-native/Libraries/Lists/SectionListModern.js +++ b/packages/react-native/Libraries/Lists/SectionListModern.js @@ -21,7 +21,7 @@ import type { import Platform from '../Utilities/Platform'; import VirtualizedLists from '@react-native/virtualized-lists'; import * as React from 'react'; -import {forwardRef, useImperativeHandle, useRef} from 'react'; +import {useImperativeHandle, useRef} from 'react'; const VirtualizedSectionList = VirtualizedLists.VirtualizedSectionList;