Merge pull request #843 from augustocardoso07/fix/page-counter

Fix page counter in the center section
This commit is contained in:
Amruth Pillai
2022-04-18 18:15:24 +02:00
committed by GitHub
+1 -1
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>
);