From da42cd7835d68408ac77b7eee8d595da39126223 Mon Sep 17 00:00:00 2001 From: Rahulcheryala Date: Fri, 5 Jun 2026 16:43:21 +0530 Subject: [PATCH] refactor: migrate hooks (use-notification-preview) from web/app/ce to web/app/core --- apps/web/core/components/workspace-notifications/root.tsx | 2 +- apps/web/{ce => core}/hooks/use-notification-preview.tsx | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename apps/web/{ce => core}/hooks/use-notification-preview.tsx (100%) diff --git a/apps/web/core/components/workspace-notifications/root.tsx b/apps/web/core/components/workspace-notifications/root.tsx index 8dd077c4dc..0c8714189e 100644 --- a/apps/web/core/components/workspace-notifications/root.tsx +++ b/apps/web/core/components/workspace-notifications/root.tsx @@ -19,7 +19,7 @@ import { useWorkspace } from "@/hooks/store/use-workspace"; import { useUserPermissions } from "@/hooks/store/user"; import { useWorkspaceIssueProperties } from "@/hooks/use-workspace-issue-properties"; // plane web imports -import { useNotificationPreview } from "@/plane-web/hooks/use-notification-preview"; +import { useNotificationPreview } from "@/hooks/use-notification-preview"; // local imports import { InboxContentRoot } from "../inbox/content"; diff --git a/apps/web/ce/hooks/use-notification-preview.tsx b/apps/web/core/hooks/use-notification-preview.tsx similarity index 100% rename from apps/web/ce/hooks/use-notification-preview.tsx rename to apps/web/core/hooks/use-notification-preview.tsx