Skip to content

Commit e761f82

Browse files
Refactor: Update live stats component labels
Co-authored-by: joaquim.verges <[email protected]>
1 parent c102e70 commit e761f82

File tree

1 file changed

+4
-4
lines changed
  • apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/(chainPage)/components/client

1 file changed

+4
-4
lines changed

apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/(chainPage)/components/client/live-stats.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ export function ChainLiveStats(props: { rpc: string }) {
168168
)}
169169
</PrimaryInfoItem>
170170

171-
{/* Block Height */}
172-
<PrimaryInfoItem title="Block Height" titleIcon={<PulseDot />}>
171+
{/* Latest Block */}
172+
<PrimaryInfoItem title="Latest Block" titleIcon={<PulseDot />}>
173173
{stats.isError ? (
174174
<p className="fade-in-0 animate-in text-destructive-text">N/A</p>
175175
) : stats.data ? (
@@ -181,8 +181,8 @@ export function ChainLiveStats(props: { rpc: string }) {
181181
)}
182182
</PrimaryInfoItem>
183183

184-
{/* EIP-7702 Support */}
185-
<PrimaryInfoItem title="EIP-7702 Support">
184+
{/* EIP-7702 */}
185+
<PrimaryInfoItem title="EIP-7702">
186186
{eip7702Support.isError ? (
187187
<Badge variant="destructive">Disabled</Badge>
188188
) : eip7702Support.data ? (

0 commit comments

Comments
 (0)