refactor: moved client to lib/client
This commit is contained in:
@ -8,7 +8,7 @@ import React, {
|
||||
useState,
|
||||
} from "react";
|
||||
import { useProjectsContext } from "@/app/deals/contexts/ProjectsContext";
|
||||
import { BoardSchema } from "@/client";
|
||||
import { BoardSchema } from "@/lib/client";
|
||||
import useBoardsList from "@/hooks/useBoardsList";
|
||||
|
||||
type BoardsContextState = {
|
||||
|
||||
@ -7,7 +7,7 @@ import React, {
|
||||
useEffect,
|
||||
useState,
|
||||
} from "react";
|
||||
import { ProjectSchema } from "@/client";
|
||||
import { ProjectSchema } from "@/lib/client";
|
||||
import useProjectsList from "@/hooks/useProjectsList";
|
||||
|
||||
type ProjectsContextState = {
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
import React, { createContext, FC, useContext, useEffect } from "react";
|
||||
import { useBoardsContext } from "@/app/deals/contexts/BoardsContext";
|
||||
import { DealSchema, StatusSchema } from "@/client";
|
||||
import { DealSchema, StatusSchema } from "@/lib/client";
|
||||
import useDealsList from "@/hooks/useDealsList";
|
||||
import useStatusesList from "@/hooks/useStatusesList";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user