mirror of
https://github.com/makeplane/plane.git
synced 2026-07-14 06:25:58 +02:00
fix: build (#3442)
This commit is contained in:
@@ -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 = {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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";
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user