refactor: simplify layout structure in SettingsLayout component #43

Merged
pangestu merged 1 commits from refactor/simplify-SettingsLayout into dev 2026-08-26 00:31:03 +08:00

View File

@ -67,10 +67,8 @@ export default function SettingsLayout({ children }: PropsWithChildren) {
<Separator className="my-6 lg:hidden" />
<div className="flex-1 md:max-w-2xl">
<section className="max-w-xl space-y-12">
{children}
</section>
<div className="flex-1">
<section className="space-y-12">{children}</section>
</div>
</div>
</div>