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 { Tooltip, BlockedIcon, BlockerIcon, RelatedIcon, LayersIcon, DiceIcon } from "@plane/ui";
// constants
import { ISSUE_OPENED } from "constants/event-tracker";
import { ISSUE_OPENED } from "@/constants/event-tracker";
// helpers
import { renderFormattedDate } from "@/helpers/date-time.helper";
import { getElementFromPath } from "@/helpers/event-tracker.helper";

View File

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

View File

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