We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8b49d3 commit 9bfaf84Copy full SHA for 9bfaf84
src/pages/home/HomePage.tsx
@@ -85,8 +85,8 @@ function PageBody() {
85
<div className="flex flex-col gap-1 md:col-span-2">
86
<span className="text-xs text-muted-foreground uppercase tracking-wide font-medium">Contact</span>
87
<div className="flex flex-wrap gap-2">
88
- {mintData.contact.map((contact, index) => (
89
- <span key={index} className="text-sm bg-muted px-2 py-1 rounded">
+ {mintData.contact.map((contact) => (
+ <span key={contact} className="text-sm bg-muted px-2 py-1 rounded">
90
{contact}
91
</span>
92
))}
0 commit comments