From 5a539e641387b3be464d2475f38312a0ad82b8d7 Mon Sep 17 00:00:00 2001 From: danidfra Date: Sun, 26 Jan 2025 14:10:59 -0300 Subject: [PATCH] Fix issue in Layout.tsx --- src/components/ui/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/layout.tsx b/src/components/ui/layout.tsx index c49e90dde..6afc7ba7d 100644 --- a/src/components/ui/layout.tsx +++ b/src/components/ui/layout.tsx @@ -39,7 +39,7 @@ const Sidebar: React.FC = ({ children }) => ( /** Center column container in the UI. */ const Main: React.FC> = ({ children, className }) => ( -
+
{children}
);