File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,10 @@ const HomePage: React.FC = () => {
4141 < div className = "bg-blue-50 rounded-lg p-3 sm:p-5 mb-4 sm:mb-5" >
4242 < div className = "mb-3 sm:mb-4 text-base sm:text-lg font-semibold" > PVM</ div >
4343 < div className = { `grid gap-4 mb-4 ${ columns === 2 ? 'grid-cols-2' : 'grid-cols-4' } ` } >
44- < InfoCard title = "PVM Block" value = { metadata . finalized_blockNum } href = "/block" />
45- < InfoCard title = "Transaction" value = { metadata . total_transaction } href = "/tx" />
46- < InfoCard title = "PVM Account" value = { metadata . total_evm_account } href = "/address" />
47- < InfoCard title = "PVM Contract" value = { metadata . total_evm_contract } href = "/contract" />
44+ < InfoCard title = "PVM Block" value = { formatNumber ( metadata . finalized_blockNum ) } href = "/block" />
45+ < InfoCard title = "Transaction" value = { formatNumber ( metadata . total_transaction ) } href = "/tx" />
46+ < InfoCard title = "PVM Account" value = { formatNumber ( metadata . total_evm_account ) } href = "/address" />
47+ < InfoCard title = "PVM Contract" value = { formatNumber ( metadata . total_evm_contract ) } href = "/contract" />
4848 </ div >
4949 </ div >
5050 < div className = { `grid gap-4 grid-cols-1 ${ columns === 1 ? 'lg:grid-cols-2' : '' } ` } >
You can’t perform that action at this time.
0 commit comments