Fix translation typo

This commit is contained in:
Bojan Mojsilovic 2023-07-12 11:28:43 +02:00
parent 0f2d15cf7a
commit 97450db7e8

View File

@ -32,7 +32,7 @@ const NostrStats: Component<{ stats: PrimalNetStats }> = (props) => {
<div class={styles.netstats}> <div class={styles.netstats}>
{statDisplay(props.stats.users, 'users')} {statDisplay(props.stats.users, 'users')}
{statDisplay(props.stats.pubkeys, 'pubkeys')} {statDisplay(props.stats.pubkeys, 'pubkeys')}
{statDisplay(props.stats.zaps, 'users')} {statDisplay(props.stats.zaps, 'zaps')}
{statDisplay((props.stats.satszapped /100000000).toFixed(8), 'btcZapped')} {statDisplay((props.stats.satszapped /100000000).toFixed(8), 'btcZapped')}
{statDisplay(props.stats.pubnotes, 'pubnotes')} {statDisplay(props.stats.pubnotes, 'pubnotes')}
{statDisplay(props.stats.reposts, 'reposts')} {statDisplay(props.stats.reposts, 'reposts')}