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

@ -13,12 +13,12 @@ import {
} from "react-hook-form";
// react-color
// component
import { Popover, Transition } from "@headlessui/react";
import { Palette } from "lucide-react";
import { Popover, Transition } from "@headlessui/react";
import { IUserTheme } from "@plane/types";
import { Input } from "@plane/ui";
// icons
// types
import { IUserTheme } from "@plane/types";
type Props = {
name: keyof IUserTheme;

View file

@ -1,12 +1,12 @@
import { observer } from "mobx-react-lite";
import { useTheme } from "next-themes";
import { Controller, useForm } from "react-hook-form";
import { IUserTheme } from "@plane/types";
// hooks
import { Button, InputColorPicker } from "@plane/ui";
import { useUser } from "hooks/store";
import { useUser } from "@/hooks/store";
// ui
// types
import { IUserTheme } from "@plane/types";
const inputRules = {
required: "Background color is required",

View file

@ -1,7 +1,7 @@
import { FC } from "react";
// constants
import { CustomSelect } from "@plane/ui";
import { THEME_OPTIONS, I_THEME_OPTION } from "constants/themes";
import { THEME_OPTIONS, I_THEME_OPTION } from "@/constants/themes";
// ui
type Props = {