Add index parameter to plans.map callback in Pricing component

Made-with: Cursor
This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-03-24 20:44:14 -07:00
parent c7cd3c6a9d
commit e3f5b7923a

View file

@ -101,7 +101,7 @@ export function Pricing({
plans.length === 2 ? "md:grid-cols-2 max-w-5xl mx-auto" : "md:grid-cols-3"
)}
>
{plans.map((plan) => (
{plans.map((plan, index) => (
<motion.div
key={plan.name}
initial={{ y: 50, opacity: 1 }}