Skip to content

Commit

Permalink
refactor: Move LAST CHECK to top of list
Browse files Browse the repository at this point in the history
  • Loading branch information
gmolki committed Jan 29, 2025
1 parent 3f2b827 commit e10d2b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ export const OverviewTabContent = ({
</div>
<div tw="flex-1 w-1/3 min-w-[20rem] flex flex-col gap-9">
<Card2 title="REWARD INDICATORS">
<Card2Field name="LAST CHECK" value={lastMetricsCheck} />
<Card2Field
name="NODES ON ASN"
value={
Expand All @@ -318,7 +319,6 @@ export const OverviewTabContent = ({
/>
<Card2Field name="VERSION" value={node?.metricsData?.version} />
<Card2Field name="BASE LATENCY" value={baseLatency} />
<Card2Field name="LAST CHECK" value={lastMetricsCheck} />
</Card2>
<Card2 title="POTENTIAL REWARD">
<Card2Field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ export const CoreChannelNodeDetailPage = () => {
</div>
<div tw="flex-1 w-1/3 min-w-[20rem] flex flex-col gap-9">
<Card2 title="REWARD INDICATORS">
<Card2Field name="LAST CHECK" value={lastMetricsCheck} />
{/* <Card2Field name="NODES ON ASN" value={nodesOnSameASN} /> */}
<Card2Field name="VERSION" value={node?.metricsData?.version} />
<Card2Field name="BASE LATENCY" value={baseLatency} />
Expand All @@ -239,7 +240,6 @@ export const CoreChannelNodeDetailPage = () => {
$percent={relativeETHHeightPercent || 0}
$color="main0"
/>
<Card2Field name="LAST CHECK" value={lastMetricsCheck} />
<Card2Field
name="linked resources"
value={
Expand Down

0 comments on commit e10d2b6

Please sign in to comment.