summaryrefslogtreecommitdiff
path: root/src/core/components/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/components/layouts')
-rw-r--r--src/core/components/layouts/AppLayout.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/components/layouts/AppLayout.jsx b/src/core/components/layouts/AppLayout.jsx
index ebbc1ad5..c72c1be5 100644
--- a/src/core/components/layouts/AppLayout.jsx
+++ b/src/core/components/layouts/AppLayout.jsx
@@ -15,7 +15,7 @@ const AppLayout = ({ children, title, withFooter = true }) => {
<AppBar title={title} />
{children}
</AnimationLayout>
- {withFooter && <BasicFooter />}
+ <BasicFooter />
</>
);
};