chore: move modal core components to the UI package (#4794)

* chore: move modal core components to the UI package

* fix: build errors
This commit is contained in:
Aaryan Khandelwal 2024-06-14 17:12:39 +05:30 committed by GitHub
parent 0aca5c7a86
commit 244986554c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 59 additions and 83 deletions

View file

@ -6,9 +6,7 @@ import { useParams } from "next/navigation";
// types
import { IProjectView } from "@plane/types";
// ui
import { TOAST_TYPE, setToast } from "@plane/ui";
// components
import { AlertModalCore } from "@/components/core";
import { AlertModalCore, TOAST_TYPE, setToast } from "@plane/ui";
// hooks
import { useProjectView } from "@/hooks/store";

View file

@ -5,9 +5,8 @@ import { observer } from "mobx-react";
// types
import { IProjectView } from "@plane/types";
// ui
import { TOAST_TYPE, setToast } from "@plane/ui";
import { EModalPosition, EModalWidth, ModalCore, TOAST_TYPE, setToast } from "@plane/ui";
// components
import { EModalPosition, EModalWidth, ModalCore } from "@/components/core";
import { ProjectViewForm } from "@/components/views";
// hooks
import { useProjectView } from "@/hooks/store";