Merge pull request #730 from LAION-AI/394-show-privacy-links

Ensuring the user can find the privacy and terms of service
This commit is contained in:
Keith Stevens
2023-01-15 19:13:13 +09:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -54,6 +54,7 @@ export const getDashboardLayout = (page: React.ReactElement) => (
>
{page}
</SideMenuLayout>
<Footer />
</div>
);
+1 -1
View File
@@ -27,6 +27,6 @@ const RandomTask = () => {
);
};
RandomTask.getLayout = getDashboardLayout;
RandomTask.getLayout = (page) => getDashboardLayout(page);
export default RandomTask;