fix formatting

This commit is contained in:
Jacky Zhao 2023-07-25 21:11:06 -07:00
parent dfee2f3b6e
commit 3f7c8d1917

View File

@ -48,7 +48,10 @@ function TagContent(props: QuartzComponentProps) {
#{tag} #{tag}
</a> </a>
</h2> </h2>
<p>{pages.length} items with this tag. {pages.length > numPages && `Showing first ${numPages}.`}</p> <p>
{pages.length} items with this tag.{" "}
{pages.length > numPages && `Showing first ${numPages}.`}
</p>
<PageList limit={numPages} {...listProps} /> <PageList limit={numPages} {...listProps} />
</div> </div>
) )