Fix page counter in the center section

This commit is contained in:
Renan Cardoso 2022-04-17 21:09:55 -03:00
parent 459f82b66b
commit 9f54516e8c
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ const Page: React.FC<Props> = ({ page, showPageNumbers = false }) => {
</div>
{showPageNumbers && (
<h4 className={styles.pageNumber}>{`${t<string>('builder.common.glossary.page')} {page + 1}`}</h4>
<h4 className={styles.pageNumber}>{`${t<string>('builder.common.glossary.page')} ${page + 1}`}</h4>
)}
</div>
);