[WEB-1319] chore: instance not ready pages improvement (#4492)

* chore: instance not ready pages improvement

* fix: magic sign up

* chore: issue mutation spinner and command k spinner updated

* chore: forgot password email input disabled

* chore: forgot password email input disabled revert

* chore: unused asset removed
This commit is contained in:
Anmol Singh Bhatia 2024-05-16 23:41:30 +05:30 committed by GitHub
parent 9bf1863f33
commit 33079c826d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 91 additions and 52 deletions

View file

@ -4,8 +4,7 @@ import { useRouter } from "next/router";
// hooks
import { Check } from "lucide-react";
import { TIssue } from "@plane/types";
import { StateGroupIcon } from "@plane/ui";
import { LogoSpinner } from "@/components/common";
import { Spinner, StateGroupIcon } from "@plane/ui";
import { EIssuesStoreType } from "@/constants/issue";
import { useProjectState, useIssues } from "@/hooks/store";
// ui
@ -59,7 +58,7 @@ export const ChangeIssueState: React.FC<Props> = observer((props) => {
<div className="text-center">No states found</div>
)
) : (
<LogoSpinner />
<Spinner />
)}
</>
);