Add types to Dialog component

This commit is contained in:
Ephraim Atta-Duncan
2023-03-28 12:55:20 +00:00
parent a9befd342c
commit b3e89b16bc
2 changed files with 27 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import { createOrUpdateRecipient, deleteRecipient, sendSigningRequests } from "@
import { FormProvider, useFieldArray, useForm, useWatch } from "react-hook-form";
type FormValues = {
export type FormValues = {
signers: { id: number; email: string; name: string }[];
};