Remove debug logging
This commit is contained in:
@@ -51,8 +51,6 @@ export default function EditFlight() {
|
||||
imageForm.append("images", img);
|
||||
}
|
||||
|
||||
console.log(imageForm);
|
||||
|
||||
const img_id = await client.post(
|
||||
`/flights/${params.id}/add_images`,
|
||||
imageForm,
|
||||
|
@@ -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,
|
||||
|
@@ -32,10 +32,6 @@ export default function Me() {
|
||||
new_psk: string;
|
||||
confirm_new_psk: string;
|
||||
}) => {
|
||||
console.log({
|
||||
current_password: values.current_psk,
|
||||
new_password: values.new_psk,
|
||||
});
|
||||
await client.put(`/users/me/password`, {
|
||||
current_password: values.current_psk,
|
||||
new_password: values.new_psk,
|
||||
|
Reference in New Issue
Block a user