From fcd3d3e493306f8d7aebcd78f1ef4dc67bb930f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 29 Jul 2024 11:34:53 +0000 Subject: [PATCH] Format code with Prettier --- web/src/components/UserInformationForm.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/web/src/components/UserInformationForm.tsx b/web/src/components/UserInformationForm.tsx index fee5b35c..98162eb4 100644 --- a/web/src/components/UserInformationForm.tsx +++ b/web/src/components/UserInformationForm.tsx @@ -25,7 +25,6 @@ function UserInformationForm() { const paymentOptions = ["One Semester ($8)", "Two Semesters ($15)"]; const onSubmit = async (data: any) => { - try { const response = await axios.post("/api/submitForm", data, { headers: { @@ -39,8 +38,7 @@ function UserInformationForm() { // Form Submission Failed } } catch (error) { - // Error - + // Error } };