Skip to content

Commit ca885f7

Browse files
authored
Merge pull request #91 from ulken/fix-animated_section_keys
Add key to animated section list
2 parents 761c4b8 + e3966f0 commit ca885f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playground/modules/wizard/animated/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const AnimatedSection: React.FC = () => {
1616
.fill(null)
1717
.map((_, index) => {
1818
return (
19-
<AnimatedStep previousStep={previousStep}>
19+
<AnimatedStep key={index} previousStep={previousStep}>
2020
<Step number={index + 1} withCallback={false}></Step>
2121
</AnimatedStep>
2222
);

0 commit comments

Comments
 (0)