diff --git a/packages/ui/src/components/views/SettingsView.tsx b/packages/ui/src/components/views/SettingsView.tsx index 90c881ee..077c4992 100644 --- a/packages/ui/src/components/views/SettingsView.tsx +++ b/packages/ui/src/components/views/SettingsView.tsx @@ -1013,13 +1013,13 @@ export const SettingsView: React.FC = ({ onClose, forceMobile // No sidebar available; fall back to direct content. const fallback = renderPageContent(settingsSlug); return ( -
+
{fallback}
); } return ( -
+
{renderPageSidebar(settingsSlug, { onItemSelect: handleMobilePageSidebarItemSelect })} @@ -1031,7 +1031,7 @@ export const SettingsView: React.FC = ({ onClose, forceMobile const content = renderPageContent(settingsSlug); return ( -
+
{content}
); @@ -1048,7 +1048,7 @@ export const SettingsView: React.FC = ({ onClose, forceMobile
{renderPageSidebar(settingsSlug, {})}
-
+
{renderPageContent(settingsSlug)}
@@ -1056,7 +1056,7 @@ export const SettingsView: React.FC = ({ onClose, forceMobile } return ( -
+
{renderPageContent(settingsSlug)}
);