Minor random fixes

This commit is contained in:
Patrick Fic
2020-07-23 14:39:45 -07:00
parent 8a4f0dda44
commit acd8984d5b
18 changed files with 389 additions and 353 deletions

View File

@@ -151,10 +151,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 ? (
@@ -163,7 +163,9 @@ export function Manage({ match, conflict }) {
<Suspense
fallback={
<LoadingSpinner message={t("general.labels.loadingapp")} />
}>
}
>
<BreadCrumbs />
<EnterInvoiceModalContainer />
<JobCostingModal />
<EmailOverlayContainer />
@@ -347,7 +349,6 @@ export function Manage({ match, conflict }) {
</ErrorBoundary>
<ChatAffixContainer />
<BackTop />
<Layout.Footer> Some footer</Layout.Footer>
</Content>
</Layout>
);