Remove debug logging

This commit is contained in:
april
2024-01-15 17:00:09 -06:00
parent 9eb5465bc3
commit 9a16d79ab9
5 changed files with 0 additions and 15 deletions

View File

@@ -20,8 +20,6 @@ export default function NewFlight() {
const id = res.data.id;
if (!id) throw new Error("Flight creation failed");
console.log(values.images);
const imageForm = new FormData();
// Upload images
@@ -29,8 +27,6 @@ export default function NewFlight() {
imageForm.append("images", img);
}
console.log(imageForm);
const img_id = await client.post(
`/flights/${id}/add_images`,
imageForm,