fix: eslint
This commit is contained in:
@ -47,7 +47,7 @@ import PendingRequestsManager from "@/components/PendingRequestsManager.vue";
|
||||
import { createAdmin } from "@/services/Apis/Admin";
|
||||
import Project from "@/ApiClasses/Project";
|
||||
import UserEntrepreneur from "@/ApiClasses/UserEntrepreneur";
|
||||
import UserAdmin from "@/ApiClasses/UserAdmin";
|
||||
//import UserAdmin from "@/ApiClasses/UserAdmin";
|
||||
//import AllEntrep from "../components/AllEntrep.vue";
|
||||
const projects = ref<
|
||||
{
|
||||
@ -57,8 +57,6 @@ const projects = ref<
|
||||
}[]
|
||||
>([]);
|
||||
|
||||
|
||||
|
||||
const fallbackProjects = [
|
||||
{
|
||||
name: "Projet Alpha",
|
||||
@ -78,7 +76,10 @@ const createFirstAdmin = () => {
|
||||
console.log("Admin créé avec succès :", response.data);
|
||||
},
|
||||
(error) => {
|
||||
console.error("Erreur lors de la création de l'admin :", error.message);
|
||||
console.error(
|
||||
"Erreur lors de la création de l'admin :",
|
||||
error.message
|
||||
);
|
||||
}
|
||||
);
|
||||
};
|
||||
@ -136,7 +137,6 @@ const fetchProjects = () => {
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
const pendingProjects = ref<Project[]>([]);
|
||||
|
||||
const mockPendingProjects = [
|
||||
|
Reference in New Issue
Block a user