summaryrefslogtreecommitdiff
path: root/src/core/components
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-09-10 14:03:45 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-09-10 14:03:45 +0700
commitd1f93cea2efbbc045fbe9c5df4d94dea57c4a9b1 (patch)
tree5ee4ba79cb43786f9da8c11138fef1b4eda015cd /src/core/components
parent055e4d779151cd0cbad380043e4be38cca8b1c7a (diff)
<iman> updaet bug no footer
Diffstat (limited to 'src/core/components')
-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 />
</>
);
};