fix: eslint fixes and file formatting

This commit is contained in:
sriram veeraghanta 2024-03-19 20:08:35 +05:30
parent 473dfc7a5b
commit 53ddef1cd5
954 changed files with 3921 additions and 3809 deletions

View file

@ -3,15 +3,15 @@ import { observer } from "mobx-react";
import { useRouter } from "next/router";
import useSWR from "swr";
// hooks
import { ProjectInboxHeader } from "components/headers";
import { InboxLayoutLoader } from "components/ui";
import { useInbox, useProject } from "hooks/store";
import { ProjectInboxHeader } from "@/components/headers";
import { InboxLayoutLoader } from "@/components/ui";
import { useInbox, useProject } from "@/hooks/store";
// layouts
import { AppLayout } from "layouts/app-layout";
import { AppLayout } from "@/layouts/app-layout";
// ui
// components
// types
import { NextPageWithLayout } from "lib/types";
import { NextPageWithLayout } from "@/lib/types";
const ProjectInboxPage: NextPageWithLayout = observer(() => {
const router = useRouter();