@@ -1,6 +1,6 @@
<template>
<div class="p-field mb-3 inline-block w-full align-top">
- <label class="p-field_label" :for="name">{{ label }}</label>
+ <label class="p-field_label">{{ label }}</label>
<div class="relative">
<select
v-model="inputValue"
@@ -15,4 +15,3 @@ app.use(router);
app.mount("#app");
axios.defaults.baseURL = import.meta.env.VITE_API_BASE_URL;
-console.log(import.meta.env.VITE_API_BASE_URL);
@@ -49,7 +49,6 @@ onBeforeMount(async () => {
const { data: res } = await axios.post("/phishes", {
id: phish.value.id,
});
- console.log(res);
if (res) {
phish.value = res;
}