fix: description not loading while editing an issue (#1349)

This commit is contained in:
Aaryan Khandelwal 2023-06-23 11:09:57 +05:30 committed by GitHub
parent 8982452500
commit 048a01dbf3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View file

@ -148,7 +148,7 @@ export const IssueForm: FC<IssueFormProps> = ({
setValue,
setFocus,
} = useForm<IIssue>({
defaultValues,
defaultValues: initialData ?? defaultValues,
reValidateMode: "onChange",
});