fix: eslint fixes and file formatting
This commit is contained in:
parent
473dfc7a5b
commit
53ddef1cd5
954 changed files with 3921 additions and 3809 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import { useState } from "react";
|
||||
// components
|
||||
import { LatestFeatureBlock } from "components/common";
|
||||
import { InstanceSetupDone, InstanceSetupSignInForm } from "components/instance";
|
||||
import { LatestFeatureBlock } from "@/components/common";
|
||||
import { InstanceSetupDone, InstanceSetupSignInForm } from "@/components/instance";
|
||||
|
||||
export enum EInstanceSetupSteps {
|
||||
SIGN_IN = "SIGN_IN",
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@ import { Eye, EyeOff, XCircle } from "lucide-react";
|
|||
// ui
|
||||
import { Input, Button, TOAST_TYPE, setToast } from "@plane/ui";
|
||||
// helpers
|
||||
import { checkEmailValidity } from "helpers/string.helper";
|
||||
import { checkEmailValidity } from "@/helpers/string.helper";
|
||||
// hooks
|
||||
import { useUser } from "hooks/store";
|
||||
import { useUser } from "@/hooks/store";
|
||||
// services
|
||||
import { AuthService } from "services/auth.service";
|
||||
import { AuthService } from "@/services/auth.service";
|
||||
const authService = new AuthService();
|
||||
|
||||
interface InstanceSetupEmailFormValues {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue