fix: build errors resolved.

This commit is contained in:
Prateek Shourya
2024-09-12 20:41:39 +05:30
parent 5fcd01f80a
commit 6d2f321a72
3 changed files with 4 additions and 5 deletions

View File

@@ -2,13 +2,14 @@ import { useRef } from "react";
import { observer } from "mobx-react";
import { useParams } from "next/navigation";
import useSWR from "swr";
// plane helpers
import { useOutsideClickDetector } from "@plane/helpers";
// components
import { SidebarHelpSection } from "@/components/workspace";
// helpers
import { cn } from "@/helpers/common.helper";
// hooks
import { useAppTheme } from "@/hooks/store";
import useOutsideClickDetector from "@/hooks/use-outside-click-detector";
// plane web components
import {
PagesAppSidebarDropdown,

View File

@@ -4,12 +4,11 @@ import { FC, useRef, Fragment, useState } from "react";
import { usePopper } from "react-popper";
import { Info, Check, ChevronDown } from "lucide-react";
import { Listbox, Transition } from "@headlessui/react";
import { useOutsideClickDetector } from "@plane/helpers";
import { TEstimatePointsObject } from "@plane/types";
import { Tooltip } from "@plane/ui";
// helpers
import { cn } from "@/helpers/common.helper";
// hooks
import useOutsideClickDetector from "@/hooks/use-outside-click-detector";
type TEstimatePointDropdown = {
options: TEstimatePointsObject[];

View File

@@ -3,12 +3,11 @@ import { Placement } from "@popperjs/core";
import { observer } from "mobx-react";
import { usePopper } from "react-popper";
import { Popover } from "@headlessui/react";
import { useOutsideClickDetector } from "@plane/helpers";
// types
import { TLogoProps } from "@plane/types";
// helpers
import { cn } from "@/helpers/common.helper";
// hooks
import useOutsideClickDetector from "@/hooks/use-outside-click-detector";
// local components
import { IssueTypeLogo, TIssueTypeLogoSize } from "./issue-type-logo";
import { LucideIconsList } from "./lucide-icons-list";