Several random fixes + updates to pm2 script.

This commit is contained in:
Patrick Fic
2020-07-15 11:54:24 -07:00
parent bdd1f53ff9
commit bf74d9a042
8 changed files with 78 additions and 26 deletions

View File

@@ -145,11 +145,10 @@ export function Manage({ match, conflict }) {
}, [t]);
return (
<Layout className="layout-container">
<Layout className='layout-container'>
<HeaderContainer />
<BreadCrumbs />
<Content className="content-container">
<Content className='content-container'>
<FcmNotification />
<ErrorBoundary>
{conflict ? (
@@ -158,8 +157,7 @@ export function Manage({ match, conflict }) {
<Suspense
fallback={
<LoadingSpinner message={t("general.labels.loadingapp")} />
}
>
}>
<EnterInvoiceModalContainer />
<EmailOverlayContainer />
<TimeTicketModalContainer />
@@ -331,13 +329,8 @@ export function Manage({ match, conflict }) {
</ErrorBoundary>
<ChatAffixContainer />
<BackTop />
<Layout.Footer> Some footer</Layout.Footer>
</Content>
{
// <Footer>
// <FooterComponent />
// </Footer>
}
</Layout>
);
}