Skip to content

Commit 386d949

Browse files
authored
Fix key property assignment (#209)
1 parent 6f0d3b9 commit 386d949

File tree

1 file changed

+1
-1
lines changed
  • frameworks/react-cra/add-ons/start/assets/src/routes

1 file changed

+1
-1
lines changed

frameworks/react-cra/add-ons/start/assets/src/routes/index.tsx.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ return (
9999
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
100100
{features.map((feature, index) => (
101101
<div
102-
key="{index}"
102+
key={index}
103103
className="bg-slate-800/50 backdrop-blur-sm border border-slate-700 rounded-xl p-6 hover:border-cyan-500/50 transition-all duration-300 hover:shadow-lg hover:shadow-cyan-500/10"
104104
>
105105
<div className="mb-4">{feature.icon}</div>

0 commit comments

Comments
 (0)