Fixing file name issue

This commit is contained in:
Khalim Conn-Kowlessar 2023-05-31 11:08:54 +01:00
parent 83faddb756
commit 7fcb74a2bf
5 changed files with 5 additions and 4 deletions

View file

@ -7,6 +7,7 @@ export function TanButton({
label: string;
onClick: Dispatch<SetStateAction<any>>;
}) {
// General tan colored button
return (
<button
type="button"

View file

@ -1,6 +1,6 @@
import { Dialog, Transition } from "@headlessui/react";
import { Dispatch, Fragment, SetStateAction, useState } from "react";
import { TanButton } from "../Button";
import { TanButton } from "../Buttons";
import PartDropdown from "./PartDropdown";
export default function PartModal({

View file

@ -1,6 +1,6 @@
import { Dialog, Transition } from "@headlessui/react";
import { Dispatch, Fragment, SetStateAction, useState } from "react";
import { TanButton } from "../Button";
import { TanButton } from "../Buttons";
import EpcDropdownMenu from "../../components/property/EpcDropDownMenu";
import { EpcRating } from "@/types/epc";

View file

@ -1,6 +1,6 @@
import { Dialog, Transition } from "@headlessui/react";
import { Dispatch, Fragment, SetStateAction } from "react";
import { TanButton } from "../Button";
import { TanButton } from "../Buttons";
import { EpcRating } from "@/types/epc";
export default function PartModal({

View file

@ -8,7 +8,7 @@ import { useRouter } from "next/navigation";
import { useQuery } from "@tanstack/react-query";
import EditEpcTargetModal from "../../../../components/property/EditEpcTargetModal";
import PartCard from "@/app/components/property/PartCard";
import { TanButton } from "@/app/components/Button";
import { TanButton } from "@/app/components/Buttons";
import { fetchData } from "./utils";
import BackToPortfolio from "@/app/components/portfolio/BackToPortfolio";