diff --git a/apps/admin/components/common/skeleton.tsx b/apps/admin/components/common/skeleton.tsx index 8652a3fefb..527a1f2028 100644 --- a/apps/admin/components/common/skeleton.tsx +++ b/apps/admin/components/common/skeleton.tsx @@ -8,8 +8,7 @@ import React from "react"; // helpers import { cn } from "@plane/utils"; -// Loading-placeholder skeleton. @makeplane/propel has no skeleton component yet; -// this matches the API the workspace @plane/propel skeleton exposed. +// Loading-placeholder skeleton. @makeplane/propel has no skeleton component yet, so it is kept local. type SkeletonProps = { children: React.ReactNode; diff --git a/apps/admin/providers/toast.tsx b/apps/admin/providers/toast.tsx index 1042dd90bd..941efc9dd1 100644 --- a/apps/admin/providers/toast.tsx +++ b/apps/admin/providers/toast.tsx @@ -10,8 +10,7 @@ import { IconButton } from "@makeplane/propel/components/icon-button"; import { Icon } from "@makeplane/propel/components/icon"; import { CloseOutline } from "@makeplane/propel/icons"; -// Keep the call-site API the workspace @plane/propel toast exposed, backed by -// @makeplane/propel's toast manager, so consumers only change their import path. +// Thin wrapper over @makeplane/propel's toast manager to keep the call-site API stable. export enum TOAST_TYPE { SUCCESS = "success", ERROR = "error", diff --git a/apps/space/app/error.tsx b/apps/space/app/error.tsx index 87aa8dc199..dea70d30b0 100644 --- a/apps/space/app/error.tsx +++ b/apps/space/app/error.tsx @@ -5,7 +5,7 @@ */ // ui -import { Button } from "@plane/propel/button"; +import { Button } from "@makeplane/propel/components/button"; function ErrorPage() { const handleRetry = () => { @@ -31,12 +31,7 @@ function ErrorPage() {
{issue.name}