We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7042fc0 commit 2f83091Copy full SHA for 2f83091
src/pages/network/tick/components/TickDetails.tsx
@@ -82,6 +82,17 @@ export default function TickDetails({ tick }: Props) {
82
</div>
83
{!tickDataError && (
84
<div className="mb-24">
85
+ <SubCardItem
86
+ title={t('epoch')}
87
+ variant="secondary"
88
+ content={
89
+ isTickDataLoading ? (
90
+ <Skeleton className="h-16 w-64 rounded-8" />
91
+ ) : (
92
+ <p className="font-space text-sm text-gray-50">{tickData?.epoch}</p>
93
+ )
94
+ }
95
+ />
96
<SubCardItem
97
title={t('signature')}
98
variant="secondary"
0 commit comments