From 78c1fd8283d1150a09830d12986078f8681ed318 Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Tue, 26 Aug 2025 11:16:42 -0700 Subject: [PATCH] fix settings margins --- src/app/(main)/settings/SettingsLayout.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/(main)/settings/SettingsLayout.tsx b/src/app/(main)/settings/SettingsLayout.tsx index b3cf7df0..08f5a34c 100644 --- a/src/app/(main)/settings/SettingsLayout.tsx +++ b/src/app/(main)/settings/SettingsLayout.tsx @@ -55,7 +55,9 @@ export function SettingsLayout({ children }: { children: ReactNode }) { allowMinimize={false} /> - {children} + + {children} + ); }