We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06e6776 commit e931b9aCopy full SHA for e931b9a
src/app/conf/2025/components/speaker-tags.tsx
@@ -29,19 +29,12 @@ export function SpeakerTags({
29
</Tag>
30
)}
31
32
- <Tag color="hsl(var(--color-neu-500))">
33
- {speaker._years.length > 1 ? (
34
- <>
35
- <ReloadIcon className="-mx-0.5 size-3" />
36
- returning speaker
37
- </>
38
- ) : (
39
40
- {/* todo: this should probably be a tag manually added in Sched because it suggests it's a debut talk */}
41
- {/* <PlayIcon className="-mx-1 size-3" /> first time speaker */}
42
43
- )}
44
- </Tag>
+ {speaker._years.length > 1 && (
+ <Tag color="hsl(var(--color-neu-500))">
+ <ReloadIcon className="-mx-0.5 size-3" />
+ returning speaker
+ </Tag>
+ )}
45
</div>
46
)
47
}
0 commit comments