From 557d4725f7ed09fbbeea198f3d3e5da1f093bb19 Mon Sep 17 00:00:00 2001 From: Chrystelle Messina Date: Mon, 10 Aug 2026 16:16:02 +0200 Subject: [PATCH] fix(View): pass fallbackKey to renderItem in default children branch --- packages/reshaped/src/components/View/View.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/reshaped/src/components/View/View.tsx b/packages/reshaped/src/components/View/View.tsx index cc1fedb2..dd776051 100644 --- a/packages/reshaped/src/components/View/View.tsx +++ b/packages/reshaped/src/components/View/View.tsx @@ -278,7 +278,7 @@ const View = (props: T.Pro const usedIndex = renderedItemIndex; renderedItemIndex += 1; - return renderItem({ child, index: usedIndex }); + return renderItem({ child, index: usedIndex, fallbackKey: usedIndex }); }); // Classnames and attributes are written here so we can assign nowrap to the root element based on the children