Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/reshaped/src/components/View/View.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ const View = <As extends keyof React.JSX.IntrinsicElements = "div">(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
Expand Down
Loading