File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
apps/developer-hub/src/components/ProductCard Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,8 +68,8 @@ export function ProductCard({
6868 < div className = { styles . featuresSection } >
6969 < p className = { styles . sectionLabel } > FEATURES</ p >
7070 < div className = { styles . features } >
71- { features . map ( ( feature , index ) => (
72- < div key = { index } className = { styles . featureItem } >
71+ { features . map ( ( feature ) => (
72+ < div key = { feature . label } className = { styles . featureItem } >
7373 < div className = { styles . featureIcon } >
7474 { feature . icon ?? < Lightning size = { 12.5 } /> }
7575 </ div >
@@ -85,9 +85,9 @@ export function ProductCard({
8585 < div className = { styles . quickLinksSection } >
8686 < p className = { styles . sectionLabel } > QUICK LINKS</ p >
8787 < div className = { styles . quickLinks } >
88- { quickLinks . map ( ( link , index ) => (
88+ { quickLinks . map ( ( link ) => (
8989 < Link
90- key = { index }
90+ key = { link . href }
9191 href = { link . href }
9292 className = { styles . quickLink }
9393 >
You can’t perform that action at this time.
0 commit comments