From 5247fedd23b3ad606c080583f23e1d529f5f32f1 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Wed, 29 Oct 2025 13:34:04 +0530 Subject: [PATCH] [WEB-5271] chore: your work empty state updated #8029 --- .../issue-layouts/empty-states/profile-view.tsx | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/apps/web/core/components/issues/issue-layouts/empty-states/profile-view.tsx b/apps/web/core/components/issues/issue-layouts/empty-states/profile-view.tsx index 26f8e52ab..b714855de 100644 --- a/apps/web/core/components/issues/issue-layouts/empty-states/profile-view.tsx +++ b/apps/web/core/components/issues/issue-layouts/empty-states/profile-view.tsx @@ -2,9 +2,7 @@ import { observer } from "mobx-react"; import { useParams } from "next/navigation"; // components import { useTranslation } from "@plane/i18n"; -import { DetailedEmptyState } from "@/components/empty-state/detailed-empty-state-root"; -// constants -import { useResolvedAssetPath } from "@/hooks/use-resolved-asset-path"; +import { EmptyStateDetailed } from "@plane/propel/empty-state"; // TODO: If projectViewId changes, everything breaks. Figure out a better way to handle this. export const ProfileViewEmptyState: React.FC = observer(() => { @@ -12,19 +10,14 @@ export const ProfileViewEmptyState: React.FC = observer(() => { const { t } = useTranslation(); // store hooks const { profileViewId } = useParams(); - // derived values - const resolvedPath = useResolvedAssetPath({ - basePath: "/empty-state/profile/", - additionalPath: profileViewId?.toString(), - }); if (!profileViewId) return null; return ( - ); });