Do not show custom page content sections if it is empty. Closes #2752

This commit is contained in:
Gabe Kangas
2023-02-27 17:39:45 -08:00
parent f2c8278780
commit 38a52c501c
2 changed files with 11 additions and 6 deletions

View File

@@ -86,9 +86,11 @@ export const MobileContent: FC<MobileContentProps> = ({
const aboutTabContent = (
<>
<ContentHeader name={name} summary={summary} tags={tags} links={socialHandles} logo="/logo" />
<div className={styles.bottomPageContentContainer}>
<CustomPageContent content={extraPageContent} />
</div>
{!!extraPageContent && (
<div className={styles.bottomPageContentContainer}>
<CustomPageContent content={extraPageContent} />
</div>
)}
</>
);
const followersTabContent = (