We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e06762 commit b98a6cbCopy full SHA for b98a6cb
1 file changed
src/components/Chat/ChatArea.tsx
@@ -95,8 +95,8 @@ export const ChatArea = ({
95
<div className={`${eccgui}-chat__area-contentwidth`} ref={chatcontents}>
96
{autoSpacingSize && children ? (
97
<ul>
98
- {React.Children.toArray(children).map((child) => (
99
- <li>
+ {React.Children.toArray(children).map((child, index) => (
+ <li key={index}>
100
{child}
101
<Spacing size={autoSpacingSize} />
102
</li>
0 commit comments