Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿง‘โ€๐ŸŽจ improve chart

+2 -1
+2 -1
apps/web/src/components/ping-response-analysis/multi-region-chart.tsx
··· 8 8 export function MultiRegionChart({ regions }: { regions: RegionChecker[] }) { 9 9 const data = regions.map((item) => { 10 10 const { dns, connection, tls, ttfb, transfer } = getTimingPhases( 11 - item.timing, 11 + item.timing 12 12 ); 13 13 return { 14 14 region: regionFormatter(item.region), ··· 29 29 stack 30 30 layout="vertical" 31 31 yAxisWidth={65} 32 + className="h-[64rem] w-full" 32 33 /> 33 34 ); 34 35 }