diff --git a/web/app/layout.tsx b/web/app/layout.tsx
index 683c450ab8..a5a02c7079 100644
--- a/web/app/layout.tsx
+++ b/web/app/layout.tsx
@@ -72,10 +72,12 @@ export default function RootLayout({ children }: { children: React.ReactNode })
crossOrigin="use-credentials"
/>
-
-
+
- {children}
+
{process.env.NEXT_PUBLIC_PLAUSIBLE_DOMAIN && (
diff --git a/web/app/profile/layout.tsx b/web/app/profile/layout.tsx
index 1f1b1dff47..21bc6566d8 100644
--- a/web/app/profile/layout.tsx
+++ b/web/app/profile/layout.tsx
@@ -19,7 +19,7 @@ export default function ProfileSettingsLayout(props: Props) {
<>
-
+
{children}
diff --git a/web/app/profile/sidebar.tsx b/web/app/profile/sidebar.tsx
index 751dee61d2..c638d52fff 100644
--- a/web/app/profile/sidebar.tsx
+++ b/web/app/profile/sidebar.tsx
@@ -12,6 +12,8 @@ import { TOAST_TYPE, Tooltip, setToast } from "@plane/ui";
import { SidebarNavItem } from "@/components/sidebar";
// constants
import { PROFILE_ACTION_LINKS } from "@/constants/profile";
+// helpers
+import { cn } from "@/helpers/common.helper";
// hooks
import { useAppTheme, useUser, useUserSettings, useWorkspace } from "@/hooks/store";
import useOutsideClickDetector from "@/hooks/use-outside-click-detector";
@@ -117,11 +119,11 @@ export const ProfileLayoutSidebar = observer(() => {
)}
-
+
{!sidebarCollapsed && (
-
Your account
+
Your account
)}
-
+
{PROFILE_ACTION_LINKS.map((link) => {
if (link.key === "change-password" && currentUser?.is_password_autoset) return null;
@@ -150,12 +152,17 @@ export const ProfileLayoutSidebar = observer(() => {
})}
-
+
{!sidebarCollapsed && (
-
Workspaces
+
Workspaces
)}
{workspacesList && workspacesList.length > 0 && (
-
+
{workspacesList.map((workspace) => (
{
))}
)}
-
+
{WORKSPACE_ACTION_LINKS.map((link) => (