chore(eslint): ignore type of global react-query queryFn
This commit is contained in:
parent
cd2273ba54
commit
7c8e97f084
1 changed files with 2 additions and 0 deletions
|
@ -97,6 +97,8 @@ async function getPays(): Promise<{ label: string }[]> {
|
|||
export const queryClient = new QueryClient({
|
||||
defaultOptions: {
|
||||
queries: {
|
||||
// we don't really care about global queryFn type
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
queryFn: defaultQueryFn as any
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue