Skip to content

Commit cf89863

Browse files
committed
Add missing keys
1 parent be6a476 commit cf89863

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/app/conf/2025/components/call-for-proposals.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client"
22
import clsx from "clsx"
33

4-
import { useState, useEffect, ReactNode } from "react"
4+
import { useState, useEffect, ReactNode, Fragment } from "react"
55
import Link from "next/link"
66
import { Button } from "../../_design-system/button"
77
import ArrowDownIcon from "../pixelarticons/arrow-down.svg?svgr"
@@ -370,7 +370,6 @@ export function CallForProposals() {
370370
{buttonText}
371371
</Button>
372372
</div>
373-
{/* todo: this might need to be a grid on mobile */}
374373
<article className="flex h-auto flex-col bg-[#C6F267]">
375374
<div
376375
role="tablist"
@@ -387,7 +386,7 @@ export function CallForProposals() {
387386
</div>
388387
<div className="flex flex-1 justify-center overflow-hidden max-md:flex-col md:items-center">
389388
{tabsInOrder.map(tab => (
390-
<>
389+
<Fragment key={tab}>
391390
<TabButton
392391
tab={tab}
393392
activeTab={activeTab}
@@ -406,7 +405,7 @@ export function CallForProposals() {
406405
>
407406
{tabs[tab]}
408407
</div>
409-
</>
408+
</Fragment>
410409
))}
411410
</div>
412411
</article>

0 commit comments

Comments
 (0)