Remove old print statement

This commit is contained in:
Richard Bowman 2023-12-01 00:58:29 +00:00
parent 471a89cc72
commit 55305a67f4

View file

@ -128,10 +128,6 @@ export default {
let response = await axios.get(this.cameraUri); // Get the thing description let response = await axios.get(this.cameraUri); // Get the thing description
let td = response.data; let td = response.data;
this.actions = td.actions; this.actions = td.actions;
console.log(
"full auto calibrate in actions",
"full_auto_calibrate" in this.actions
);
} catch (error) { } catch (error) {
this.modalError(error); // Let mixin handle error this.modalError(error); // Let mixin handle error
} }