fix: eslint

This commit is contained in:
Mohamed Maoulainine Maoulainine 2025-04-21 18:33:51 +02:00
parent fdae3e4c04
commit d9c5f7bacf
2 changed files with 2 additions and 2 deletions
front/MyINPulse-front/src
components
services

@ -30,7 +30,7 @@
lieu: string,
}
const props = defineProps<{
defineProps<{
projectRDV: rendezVous[]
}>();

@ -67,7 +67,7 @@ function callApi(
function postApi(
endpoint: string,
data: any,
data: unknown, //to fix eslint issue, go back here if errors occurs later
onSuccessHandler?: (response: AxiosResponse) => void,
onErrorHandler?: (error: AxiosError) => void
): void {