format project

This commit is contained in:
Kurt Hutten
2021-09-25 17:59:34 +10:00
parent 0ba4ec4e21
commit c77169cf21
2 changed files with 3 additions and 2 deletions

View File

@@ -171,7 +171,9 @@ const MainLayout = ({ children, shouldRemoveFooterInIde }) => {
open={isLoginModalOpen}
onClose={() => setIsLoginModalOpen(false)}
/>
<main className="flex-grow bg-ch-gray-800 preserve-3d-for-children">{children}</main>
<main className="flex-grow bg-ch-gray-800 preserve-3d-for-children">
{children}
</main>
{!shouldRemoveFooterInIde && <Footer />}
</div>
)

View File

@@ -1,4 +1,3 @@
import MainLayout from 'src/layouts/MainLayout'
import EditUserCell from 'src/components/EditUserCell'
import Seo from 'src/components/Seo/Seo'
import { Toaster } from '@redwoodjs/web/toast'