Skip to content

Commit 3d37a3a

Browse files
committed
remove extra console outputs
1 parent d167056 commit 3d37a3a

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/components/SubmissionModal.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,6 @@ const SubmissionModal = ({
109109
);
110110
};
111111

112-
console.log("hasError", hasError);
113-
114112
return (
115113
<Modal
116114
label="Submission Status"

src/hooks/useSubmitCallback.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ const useSubmitCallback = (): SubmitCallback => {
2525
const url = `${formURL}${params}`;
2626
await fetch(url);
2727
setSuccess(true);
28-
console.log("success!");
2928
} catch (e: unknown) {
3029
const msg =
3130
e instanceof Error ? e.message : "An unknown error occurred";

0 commit comments

Comments
 (0)