fix: build (#3442)

This commit is contained in:
Akshita Goyal
2025-06-18 16:33:41 +05:30
committed by GitHub
parent 783df86126
commit 6ef77039c2
5 changed files with 6 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ import { AlertTriangle } from "lucide-react";
import { useTranslation } from "@plane/i18n";
import { Button, EModalPosition, EModalWidth, ModalCore } from "@plane/ui";
// helpers
import { cn } from "@/helpers/common.helper";
import { cn } from "@plane/utils";
import { useIssueTypes } from "@/plane-web/hooks/store";
type TProps = {

View File

@@ -22,9 +22,9 @@ import {
} from "@plane/ui";
// types
// components
import { getPageName, getTabIndex } from "@plane/utils";
import { IssueIdentifier } from "@/ce/components/issues/issue-details/issue-identifier";
import { getPageName } from "@/helpers/page.helper";
import { getTabIndex } from "@/helpers/tab-indices.helper";
import { useIssueDetail } from "@/hooks/store";
import { usePlatformOS } from "@/hooks/use-platform-os";
// services

View File

@@ -5,8 +5,8 @@ import { AlertTriangle } from "lucide-react";
import { useTranslation } from "@plane/i18n";
import { IIssueType } from "@plane/types";
import { Button, EModalPosition, EModalWidth, ModalCore } from "@plane/ui";
import { cn } from "@plane/utils";
// helpers
import { cn } from "@/helpers/common.helper";
type TProps = {
issueTypeId: string | null;

View File

@@ -1,7 +1,7 @@
// types
import { API_BASE_URL } from "@plane/constants";
import { TIssuePage } from "@plane/types";
// helpers
import { API_BASE_URL } from "@/helpers/common.helper";
// services
import { APIService } from "@/services/api.service";

View File

@@ -1,7 +1,7 @@
import { action, makeObservable, observable, runInAction } from "mobx";
import { computedFn } from "mobx-utils";
import { TIssuePage } from "@plane/types";
import { getPageName } from "@/helpers/page.helper";
import { getPageName } from "@plane/utils";
import { IssuePageService } from "@/plane-web/services/issue/issue-page.service";
export interface IWorkItemPagesInterface {