make modal update after submission with default values

This commit is contained in:
Brandon Egger 2023-06-10 18:47:37 -05:00
parent ac8250c1c4
commit d55f54ae86

View File

@ -83,7 +83,11 @@ const LinkModal = ({
setOpen: Dispatch<SetStateAction<boolean>>;
}) => {
const { setValue, getValues } = useFormContext<ResourceUpdateInput>();
const { register, handleSubmit } = useForm<PlatformLink>();
const {
register,
handleSubmit,
setValue: setLocalFormValue,
} = useForm<PlatformLink>();
const platformTypeOptions = [
{
label: "Website",
@ -109,6 +113,8 @@ const LinkModal = ({
values.push(data);
setValue("platform_links", values);
setOpen(false);
setLocalFormValue("platform", Platform.WEBSITE);
setLocalFormValue("link", "");
};
return (