Skip to content

Commit 8d00412

Browse files
committed
chore(dev-hub) Product Card Minute change
1 parent c37edc5 commit 8d00412

File tree

1 file changed

+4
-4
lines changed
  • apps/developer-hub/src/components/ProductCard

1 file changed

+4
-4
lines changed

apps/developer-hub/src/components/ProductCard/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
>

0 commit comments

Comments
 (0)