diff --git a/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/issues/(detail)/layout.tsx b/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/issues/(detail)/layout.tsx
index 37f4a7749a..d2ccb109ba 100644
--- a/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/issues/(detail)/layout.tsx
+++ b/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/issues/(detail)/layout.tsx
@@ -8,7 +8,7 @@ export default function ProjectIssueDetailsLayout({ children }: { children: Reac
return (
<>
} />
- {children}
+ {children}
>
);
}
diff --git a/web/core/components/core/content-wrapper.tsx b/web/core/components/core/content-wrapper.tsx
index f952399675..eefc96b1e0 100644
--- a/web/core/components/core/content-wrapper.tsx
+++ b/web/core/components/core/content-wrapper.tsx
@@ -1,13 +1,16 @@
"use client";
import { ReactNode } from "react";
+// helpers
+import { cn } from "@/helpers/common.helper";
export interface ContentWrapperProps {
+ className?: string;
children: ReactNode;
}
-export const ContentWrapper = ({ children }: ContentWrapperProps) => (
+export const ContentWrapper = ({ className, children }: ContentWrapperProps) => (
-
{children}
+
{children}
);
diff --git a/web/core/components/issues/issue-detail/root.tsx b/web/core/components/issues/issue-detail/root.tsx
index 9db4b1ab9e..a5363e78ca 100644
--- a/web/core/components/issues/issue-detail/root.tsx
+++ b/web/core/components/issues/issue-detail/root.tsx
@@ -360,7 +360,7 @@ export const IssueDetailRoot: FC = observer((props) => {
/>