From 703df1389892d13bf88a9b5ca3d9c738e27de45d Mon Sep 17 00:00:00 2001 From: majakomel Date: Tue, 26 Nov 2024 17:12:09 +0100 Subject: [PATCH] test --- components/Layout.js | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/components/Layout.js b/components/Layout.js index 39eac94a..01c487cc 100644 --- a/components/Layout.js +++ b/components/Layout.js @@ -32,28 +32,23 @@ const Layout = ({ children, isEmbeddedView }) => { return ( -
+
- {!isEmbeddedView && ( - ( - {children} - )} - > + {navbarSticky ? ( + - + + ) : ( + )}
{children}
- {!isEmbeddedView && ( -
-
-
- )} +
+
)