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,17 +3,17 @@ import { observer } from "mobx-react";
|
|||
import { useRouter } from "next/router";
|
||||
import useSWR from "swr";
|
||||
// hooks
|
||||
import { EmptyState } from "components/common";
|
||||
import { PageHead } from "components/core";
|
||||
import { ProjectViewIssuesHeader } from "components/headers";
|
||||
import { ProjectViewLayoutRoot } from "components/issues";
|
||||
import { useProject, useProjectView } from "hooks/store";
|
||||
import { EmptyState } from "@/components/common";
|
||||
import { PageHead } from "@/components/core";
|
||||
import { ProjectViewIssuesHeader } from "@/components/headers";
|
||||
import { ProjectViewLayoutRoot } from "@/components/issues";
|
||||
import { useProject, useProjectView } from "@/hooks/store";
|
||||
// layouts
|
||||
import { AppLayout } from "layouts/app-layout";
|
||||
import { AppLayout } from "@/layouts/app-layout";
|
||||
// components
|
||||
// ui
|
||||
// assets
|
||||
import { NextPageWithLayout } from "lib/types";
|
||||
import { NextPageWithLayout } from "@/lib/types";
|
||||
import emptyView from "public/empty-state/view.svg";
|
||||
// types
|
||||
|
||||
|
|
|
|||
|
|
@ -2,15 +2,15 @@ import { ReactElement } from "react";
|
|||
import { observer } from "mobx-react";
|
||||
import { useRouter } from "next/router";
|
||||
// components
|
||||
import { PageHead } from "components/core";
|
||||
import { ProjectViewsHeader } from "components/headers";
|
||||
import { ProjectViewsList } from "components/views";
|
||||
import { PageHead } from "@/components/core";
|
||||
import { ProjectViewsHeader } from "@/components/headers";
|
||||
import { ProjectViewsList } from "@/components/views";
|
||||
// hooks
|
||||
import { useProject } from "hooks/store";
|
||||
import { useProject } from "@/hooks/store";
|
||||
// layouts
|
||||
import { AppLayout } from "layouts/app-layout";
|
||||
import { AppLayout } from "@/layouts/app-layout";
|
||||
// types
|
||||
import { NextPageWithLayout } from "lib/types";
|
||||
import { NextPageWithLayout } from "@/lib/types";
|
||||
|
||||
const ProjectViewsPage: NextPageWithLayout = observer(() => {
|
||||
// router
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue