Skip to content

Commit

Permalink
format frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenbrissette committed Feb 14, 2025
1 parent 26f5374 commit 574a7c5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ const CreateFormInstanceModal: React.FC<CreateFormInstanceModalProps> = ({
originatorId: user?.id!,
formTemplateId: selectedFormTemplate?.id!,
formDocLink: selectedFormTemplate?.formDocLink!,
description: selectedFormTemplate?.description ? selectedFormTemplate?.description : null,
description: selectedFormTemplate?.description
? selectedFormTemplate?.description
: null,
},
})
.then((response) => {
Expand Down

0 comments on commit 574a7c5

Please sign in to comment.