fix: eslint
Some checks failed
Format / formatting (push) Successful in 6s
Build / build (push) Successful in 43s
CI / build (push) Failing after 9s
Format / formatting (pull_request) Successful in 6s

This commit is contained in:
Mohamed Maoulainine Maoulainine 2025-04-21 17:10:43 +02:00
parent 7c8f3ba36a
commit 6d875d9df1
3 changed files with 9 additions and 8 deletions

View File

@ -33,6 +33,7 @@
const props = defineProps<{ const props = defineProps<{
projectRDV: rendezVous[] projectRDV: rendezVous[]
}>(); }>();
</script> </script>
<style scoped> <style scoped>

View File

@ -31,7 +31,7 @@ onMounted(() => {
} }
} }
}); });
/*
const loading = ref(false); const loading = ref(false);
const callApiWithLoading = async (path: string) => { const callApiWithLoading = async (path: string) => {
@ -39,7 +39,7 @@ const callApiWithLoading = async (path: string) => {
await callApi(path); await callApi(path);
loading.value = false; loading.value = false;
}; };
*/
</script> </script>

View File

@ -32,17 +32,17 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted } from "vue"; import { ref/*, onMounted*/ } from "vue";
import { callApi } from "@/services/api"; //import { callApi } from "@/services/api";
import Header from "../components/HeaderComponent.vue"; import Header from "../components/HeaderComponent.vue";
import Agenda from "../components/Agenda.vue"; import Agenda from "../components/AgendaComponent.vue";
import ProjectComp from "../components/ProjectComponent.vue"; import ProjectComp from "../components/ProjectComponent.vue";
import PendingProjectComponent from "@/components/PendingProjectComponent.vue"; import PendingProjectComponent from "@/components/PendingProjectComponent.vue";
import AddProjectForm from "@/components/AddProjectForm.vue"; import AddProjectForm from "@/components/AddProjectForm.vue";
const PORT = "8081"; //const PORT = "8081";
const URI = `http://localhost:${PORT}`; //const URI = `http://localhost:${PORT}`;
//const projects = ref<{ name: string; link: string; members: string[] }[]>([]); //const projects = ref<{ name: string; link: string; members: string[] }[]>([]);