fix typo in active visitor count

This commit is contained in:
t 2020-08-22 00:34:56 -07:00 committed by GitHub
parent 30c84dd54a
commit 470437f949
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ export default function ActiveUsers({ websiteId, className }) {
<animated.div className={styles.value}>
{props.x.interpolate(x => x.toFixed(0))}
</animated.div>
<div>{`current vistor${count !== 1 ? 's' : ''}`}</div>
<div>{`current visitor${count !== 1 ? 's' : ''}`}</div>
</div>
</div>
);