diff --git a/site/src/components/SettingsHeader/SettingsHeader.tsx b/site/src/components/SettingsHeader/SettingsHeader.tsx index d528f4ca48..5c419e5c86 100644 --- a/site/src/components/SettingsHeader/SettingsHeader.tsx +++ b/site/src/components/SettingsHeader/SettingsHeader.tsx @@ -17,14 +17,7 @@ export const SettingsHeader: FC = ({ }) => { return (
- {/* - * The text-sm class is only meant to adjust the font size of - * SettingsDescription, but we need to apply it here. That way, - * text-sm combines with the max-w-prose class and makes sure - * we have a predictable max width for the header + description by - * default. - */} -
+
{children}
{actions} diff --git a/site/src/modules/management/DeploymentSettingsLayout.tsx b/site/src/modules/management/DeploymentSettingsLayout.tsx index 82e49a3a23..da14a24753 100644 --- a/site/src/modules/management/DeploymentSettingsLayout.tsx +++ b/site/src/modules/management/DeploymentSettingsLayout.tsx @@ -51,7 +51,7 @@ const DeploymentSettingsLayout: FC = () => {
-
+
@@ -60,7 +60,7 @@ const DeploymentSettingsLayout: FC = () => {
-
+
); diff --git a/site/src/pages/UserSettingsPage/Layout.tsx b/site/src/pages/UserSettingsPage/Layout.tsx index 7cee385e10..b953b4909e 100644 --- a/site/src/pages/UserSettingsPage/Layout.tsx +++ b/site/src/pages/UserSettingsPage/Layout.tsx @@ -1,6 +1,5 @@ import { Loader } from "components/Loader/Loader"; import { Margins } from "components/Margins/Margins"; -import { Stack } from "components/Stack/Stack"; import { useAuthenticated } from "hooks"; import { type FC, Suspense } from "react"; import { Outlet } from "react-router"; @@ -15,14 +14,14 @@ const Layout: FC = () => { {pageTitle("Settings")} - +
}> -
+
- +
);