Skip to content

Commit fb6af9e

Browse files
committed
Fix type error
1 parent 6a4b386 commit fb6af9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/conf/2025/components/speaker-tags.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Tag } from "@/app/conf/_design-system/tag"
55
import ReloadIcon from "@/app/conf/_design-system/pixelarticons/reload.svg?svgr"
66
import PlayIcon from "@/app/conf/_design-system/pixelarticons/play.svg?svgr"
77

8-
import { returningSpeakers, speakerSessions } from "../_data"
8+
import { speakerSessions } from "../_data"
99
import { eventsColors } from "../utils"
1010

1111
export function SpeakerTags({
@@ -31,7 +31,7 @@ export function SpeakerTags({
3131
)}
3232

3333
<Tag color="hsl(var(--color-neu-500))">
34-
{returningSpeakers.has(speaker.username) ? (
34+
{speaker._years.length > 1 ? (
3535
<>
3636
<ReloadIcon className="-mx-0.5 size-3" />
3737
returning speaker

0 commit comments

Comments
 (0)