Skip to content

Commit e931b9a

Browse files
committed
Clean up empty tag
1 parent 06e6776 commit e931b9a

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

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

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,12 @@ export function SpeakerTags({
2929
</Tag>
3030
)}
3131

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>
32+
{speaker._years.length > 1 && (
33+
<Tag color="hsl(var(--color-neu-500))">
34+
<ReloadIcon className="-mx-0.5 size-3" />
35+
returning speaker
36+
</Tag>
37+
)}
4538
</div>
4639
)
4740
}

0 commit comments

Comments
 (0)