fix: build errors

This commit is contained in:
LAKHAN BAHETI 2024-05-28 14:30:10 +05:30
parent 7cf6603e22
commit 512defaf43
3 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ import {
import { IIssueActivity } from "@plane/types"; import { IIssueActivity } from "@plane/types";
import { Tooltip, BlockedIcon, BlockerIcon, RelatedIcon, LayersIcon, DiceIcon } from "@plane/ui"; import { Tooltip, BlockedIcon, BlockerIcon, RelatedIcon, LayersIcon, DiceIcon } from "@plane/ui";
// constants // constants
import { ISSUE_OPENED } from "constants/event-tracker"; import { ISSUE_OPENED } from "@/constants/event-tracker";
// helpers // helpers
import { renderFormattedDate } from "@/helpers/date-time.helper"; import { renderFormattedDate } from "@/helpers/date-time.helper";
import { getElementFromPath } from "@/helpers/event-tracker.helper"; import { getElementFromPath } from "@/helpers/event-tracker.helper";

View File

@ -15,7 +15,7 @@ import {
IssueListItemProps, IssueListItemProps,
} from "@/components/dashboard/widgets"; } from "@/components/dashboard/widgets";
// constants // constants
import { E_DASHBOARD, ISSUE_OPENED } from "constants/event-tracker"; import { E_DASHBOARD, ISSUE_OPENED } from "@/constants/event-tracker";
// helpers // helpers
import { cn } from "@/helpers/common.helper"; import { cn } from "@/helpers/common.helper";
import { getRedirectionFilters } from "@/helpers/dashboard.helper"; import { getRedirectionFilters } from "@/helpers/dashboard.helper";

View File

@ -16,9 +16,9 @@ import {
} from "@plane/ui"; } from "@plane/ui";
// components // components
import { IssueSubscription, IssueUpdateStatus } from "@/components/issues"; import { IssueSubscription, IssueUpdateStatus } from "@/components/issues";
import { STATE_GROUPS } from "@/constants/state";
// constants // constants
import { ISSUE_OPENED } from "constants/event-tracker"; import { ISSUE_OPENED } from "@/constants/event-tracker";
import { STATE_GROUPS } from "@/constants/state";
// helpers // helpers
import { cn } from "@/helpers/common.helper"; import { cn } from "@/helpers/common.helper";
import { getElementIdFromPath } from "@/helpers/event-tracker.helper"; import { getElementIdFromPath } from "@/helpers/event-tracker.helper";