From 61b47fa5d501653a28e8a1638977bec3114153ac Mon Sep 17 00:00:00 2001 From: RandyJC Date: Tue, 9 Dec 2025 11:57:43 +0100 Subject: [PATCH] fix --- packages/web/src/app/(auth)/layout.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/web/src/app/(auth)/layout.tsx b/packages/web/src/app/(auth)/layout.tsx index 284ef69..11d524d 100644 --- a/packages/web/src/app/(auth)/layout.tsx +++ b/packages/web/src/app/(auth)/layout.tsx @@ -14,14 +14,16 @@ const AuthLayout = ({ children }: PropsWithChildren) => { }, [connect, isConnected]) const Shell = ({ children: inner }: PropsWithChildren) => ( -
+
- - {inner} +
+ + {inner} +
)