mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 00:36:31 +02:00
Merge pull request #961 from MODSetter/fix/pricing-map-index
Add index parameter to plans.map callback in Pricing component
This commit is contained in:
commit
59e21db42b
1 changed files with 1 additions and 1 deletions
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue