8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60ac23f commit e9dddddCopy full SHA for e9ddddd
src/components/crazy/CrazyChallenge.tsx
@@ -23,8 +23,7 @@ const CrazyChallenge = (props: CrazyChallengeProps) => {
23
const formData = new FormData((e.target as HTMLElement).parentElement as HTMLFormElement);
24
setUploading(true);
25
26
- uploadChallenge(challenge, formData, setPercentage).then((response) => {
27
- console.log(response.data);
+ uploadChallenge(challenge, formData, setPercentage).then(() => {
28
setUploading(false);
29
setError(undefined);
30
}).catch((error) => {
0 commit comments