fix: eslint fixes and file formatting
This commit is contained in:
parent
473dfc7a5b
commit
53ddef1cd5
954 changed files with 3921 additions and 3809 deletions
|
|
@ -3,19 +3,19 @@ import { observer } from "mobx-react-lite";
|
|||
import Link from "next/link";
|
||||
import { useRouter } from "next/router";
|
||||
import { LinkIcon, PencilIcon, StarIcon, TrashIcon } from "lucide-react";
|
||||
import { IProjectView } from "@plane/types";
|
||||
// ui
|
||||
import { CustomMenu, TOAST_TYPE, setToast } from "@plane/ui";
|
||||
// components
|
||||
import { CreateUpdateProjectViewModal, DeleteProjectViewModal } from "components/views";
|
||||
import { CreateUpdateProjectViewModal, DeleteProjectViewModal } from "@/components/views";
|
||||
// constants
|
||||
import { EUserProjectRoles } from "constants/project";
|
||||
import { EUserProjectRoles } from "@/constants/project";
|
||||
// helpers
|
||||
import { calculateTotalFilters } from "helpers/filter.helper";
|
||||
import { copyUrlToClipboard } from "helpers/string.helper";
|
||||
import { calculateTotalFilters } from "@/helpers/filter.helper";
|
||||
import { copyUrlToClipboard } from "@/helpers/string.helper";
|
||||
// hooks
|
||||
import { useProjectView, useUser } from "hooks/store";
|
||||
import { useProjectView, useUser } from "@/hooks/store";
|
||||
// types
|
||||
import { IProjectView } from "@plane/types";
|
||||
|
||||
type Props = {
|
||||
view: IProjectView;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue