Fixed key error

This commit is contained in:
qt-coder 2021-07-05 18:04:21 +08:00
parent 074709b607
commit ab20e64012

View file

@ -161,7 +161,7 @@ export default function GridBlurredBackdrop() {
mt={16} mt={16}
mx={'auto'}> mx={'auto'}>
{testimonials.map((cardInfo, index) => ( {testimonials.map((cardInfo, index) => (
<TestmonialCard {...cardInfo} index={index} /> <TestmonialCard {...cardInfo} key={index} />
))} ))}
</SimpleGrid> </SimpleGrid>
</Flex> </Flex>