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

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

View File

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

View File

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