diff --git a/apps/web/public/locales/en/app.json b/apps/web/public/locales/en/app.json index 7c765e1ae..13a8afee6 100644 --- a/apps/web/public/locales/en/app.json +++ b/apps/web/public/locales/en/app.json @@ -394,5 +394,6 @@ "disableUserRegistration": "Disable User Registration", "disableUserRegistrationDescription": "Prevent new users from registering an account.", "authenticationAndSecurity": "Authentication & Security", - "authenticationAndSecurityDescription": "Manage authentication and security settings" + "authenticationAndSecurityDescription": "Manage authentication and security settings", + "youHaveUnsavedChanges": "You have unsaved changes" } diff --git a/apps/web/src/app/[locale]/(space)/layout.tsx b/apps/web/src/app/[locale]/(space)/layout.tsx index 829155351..170b203f8 100644 --- a/apps/web/src/app/[locale]/(space)/layout.tsx +++ b/apps/web/src/app/[locale]/(space)/layout.tsx @@ -1,4 +1,3 @@ -import { ActionBar } from "@rallly/ui/action-bar"; import { Button } from "@rallly/ui/button"; import { SidebarInset, SidebarTrigger } from "@rallly/ui/sidebar"; import Link from "next/link"; @@ -51,7 +50,6 @@ export default async function Layout({
-
-
{children}
; +} + +export function SettingsGroupContent({ + children, +}: { children: React.ReactNode }) { + return