@@ -355,7 +355,7 @@ function LatencyTableClient({ databases, functions, latencyData, connectionFilte
355355 < div className = "font-medium break-words text-sm" >
356356 { group . regionLabel }
357357 < div className = "font-normal text-xs text-muted-foreground mt-1 break-all" >
358- { group . regionCode } via< br /> @neondatabase/serverless { group . connectionMethod === 'http' ? ' http' : ' websocket' }
358+ { group . regionCode } via< br /> @neondatabase/serverless{ " " } { group . connectionMethod === 'http' ? < strong > http</ strong > : < strong > websocket</ strong > }
359359 </ div >
360360 </ div >
361361 </ TableHead >
@@ -422,7 +422,7 @@ function LatencyTableClient({ databases, functions, latencyData, connectionFilte
422422 key = { `${ fn . id } -${ group . regionLabel } -${ group . connectionMethod } -cold` }
423423 className = { cn (
424424 "text-center w-full min-w-[200px]" ,
425- isSameRegionMatch && "bg-green -50" ,
425+ isSameRegionMatch ? "bg-green-50" : group . connectionMethod === "ws" && "bg-yellow -50" ,
426426 groupIndex !== 0 && "border-l-2 border-l-muted"
427427 ) }
428428 >
@@ -436,7 +436,7 @@ function LatencyTableClient({ databases, functions, latencyData, connectionFilte
436436 key = { `${ fn . id } -${ group . regionLabel } -${ group . connectionMethod } -hot` }
437437 className = { cn (
438438 "text-center w-full min-w-[200px]" ,
439- isSameRegionMatch && "bg-green -50" ,
439+ isSameRegionMatch ? "bg-green-50" : group . connectionMethod === "ws" && "bg-yellow -50" ,
440440 queryType === "both" && "border-l" ,
441441 groupIndex !== 0 && queryType !== "both" && "border-l-2 border-l-muted"
442442 ) }
0 commit comments