Skip to content

Commit 443497b

Browse files
committed
Remove console.log from recording upload
1 parent 68b83f1 commit 443497b

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

apps/web/app/(org)/dashboard/caps/components/web-recorder-dialog/recording-upload.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,6 @@ export const uploadRecording = (
2020
? blob
2121
: new File([blob], "result.mp4", { type: "video/mp4" });
2222

23-
console.log("Uploading file:", {
24-
size: fileBlob.size,
25-
type: fileBlob.type,
26-
name: fileBlob.name,
27-
uploadUrl: upload.url,
28-
uploadFields: upload.fields,
29-
});
30-
3123
const formData = new FormData();
3224
Object.entries(upload.fields).forEach(([key, value]) => {
3325
formData.append(key, value);

0 commit comments

Comments
 (0)