diff --git a/components/flow/flow-frame.tsx b/components/flow/flow-frame.tsx
index 4b3da7c0..f5c1df13 100644
--- a/components/flow/flow-frame.tsx
+++ b/components/flow/flow-frame.tsx
@@ -2,12 +2,13 @@
export function FlowFrame() {
return (
-
-
);
diff --git a/components/layout/layout-wrapper.tsx b/components/layout/layout-wrapper.tsx
index 77621b78..c7d9b733 100644
--- a/components/layout/layout-wrapper.tsx
+++ b/components/layout/layout-wrapper.tsx
@@ -12,28 +12,41 @@ interface LayoutWrapperProps {
isAuthenticated: boolean;
}
-export function LayoutWrapper({ children, isSignInPage, isAuthenticated }: LayoutWrapperProps) {
+export function LayoutWrapper({
+ children,
+ isSignInPage,
+ isAuthenticated,
+}: LayoutWrapperProps) {
const { currentBackground, changeBackground } = useBackgroundImage();
+ if (isSignInPage) {
+ return <>{children}>;
+ }
+
return (
- {!isSignInPage && isAuthenticated && }
-
-
{children}
+
+
+
+
+ {children}
+
+
{!isSignInPage && isAuthenticated &&
}