@@ -71,7 +71,7 @@ export function SpeakerCard({
71
71
< div className = "flex flex-1 flex-col gap-2" >
72
72
< div className = "flex flex-col gap-1" >
73
73
< h3 className = "typography-body-lg" > { speaker . name } </ h3 >
74
- < p className = "line-clamp-1 text-neu-800 typography-body-sm " >
74
+ < p className = "typography-body-sm line-clamp-1 text-neu-800" >
75
75
{ [
76
76
speaker . position ,
77
77
speaker . company === "-" ? "" : speaker . company ,
@@ -82,7 +82,7 @@ export function SpeakerCard({
82
82
< SpeakerTags speaker = { speaker } className = "my-3" />
83
83
</ div >
84
84
{ speaker . about && (
85
- < p className = "line-clamp-3 text-neu-800 typography-body-sm " >
85
+ < p className = "typography-body-sm line-clamp-3 text-neu-800" >
86
86
{ speaker . about }
87
87
</ p >
88
88
) }
@@ -169,19 +169,21 @@ function SpeakerTags({
169
169
< div className = { clsx ( "flex basis-0 flex-wrap gap-2" , className ) } >
170
170
{ eventType && (
171
171
< Tag color = { eventsColors [ eventType ] || "hsl(var(--color-sec-base))" } >
172
- { eventType }
172
+ { eventType === "Federation and Composite Schemas"
173
+ ? "Federation"
174
+ : eventType }
173
175
</ Tag >
174
176
) }
175
177
176
178
< Tag color = "hsl(var(--color-neu-500))" >
177
- { returningSpeakers . has ( speaker . name ) ? (
179
+ { returningSpeakers . has ( speaker . username ) ? (
178
180
< >
179
- < ReloadIcon className = "size-3" />
181
+ < ReloadIcon className = "-mx-0.5 size-3" />
180
182
returning speaker
181
183
</ >
182
184
) : (
183
185
< >
184
- < PlayIcon className = "size-3" /> first time speaker
186
+ < PlayIcon className = "-mx-1 size-3" /> first time speaker
185
187
</ >
186
188
) }
187
189
</ Tag >
0 commit comments