Experiment with showing footer on about tab for mobile

This commit is contained in:
Gabe Kangas
2022-10-20 18:00:13 -07:00
parent 9c4d2b0356
commit c6364959c9
3 changed files with 18 additions and 10 deletions

View File

@@ -312,7 +312,7 @@ export const Content: FC = () => {
{showChat && !isMobile && <Sidebar />}
</AntContent>
</Spin>
{(!isMobile || !showChat) && <Footer version={version} />}
{!isMobile && <Footer version={version} />}
</div>
);
};