diff --git a/src/components/form/genericForm.tsx b/src/components/form/genericForm.tsx index ec2364c..df8e137 100644 --- a/src/components/form/genericForm.tsx +++ b/src/components/form/genericForm.tsx @@ -25,7 +25,7 @@ const GenericForm = (formData: FormData) => { body: JSON.stringify(e) }) if (!response.ok) { - let json: string = JSON.stringify(steps); + let json: string = JSON.stringify(userInput); const blob = new Blob([json], {type: "application/json"}); const url = URL.createObjectURL(blob);