Ensuring the user can find the privacy and terms of service links when logged in

This commit is contained in:
Keith Stevens
2023-01-15 14:01:33 +09:00
parent 69952dbf80
commit d3eca126fd
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;