clerical: import/doc/format fixes

This commit is contained in:
2024-05-09 23:07:40 -05:00
parent 590908ac68
commit 28f58a362f
4 changed files with 13 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
import React, { FunctionComponent, ReactNode } from "react";
import type { FunctionComponent, ReactNode } from "react";
import React from "react";
import { useBoolean } from "usehooks-ts";
import { CodeBracketIcon } from "@heroicons/react/24/solid";

View File

@@ -1,4 +1,5 @@
import React, { FunctionComponent, ReactNode } from "react";
import type { FunctionComponent, ReactNode } from "react";
import React from "react";
import Property from "@/components/common/Property";
const PropertyListItem: FunctionComponent<{

View File

@@ -12,7 +12,7 @@ import {
} from "@heroicons/react/20/solid";
import { Listbox, Transition } from "@headlessui/react";
import clsx from "clsx";
import { Maybe } from "true-myth";
import type { Maybe } from "true-myth";
/**
* Props for the LookupInput component.
@@ -52,6 +52,7 @@ const LookupInput: FunctionComponent<LookupInputProps> = ({
const { register, handleSubmit, getValues } = useForm<SubmitProps>({
defaultValues: {
target: "",
// Not used at this time.
followReferral: false,
requestJSContact: false,
},