authProvider.ts has many @typescript-eslint errors
The authProvider.ts is full of Unsafe assignment of an
any value.any types. This is a common issue when TypeScript's strict mode is enabled or when type annotations are not properly defined.anyauthProvider.tsauthProvider.tsloginauthProviderregisterforgotPasswordupdatePasswordonErrorimport { AuthProvider } from "@refinedev/core";
const authProvider: AuthProvider = {
login: async ({
email,
password,
providerName
}: {
email: string;
password: string;
providerName?: string
}) => {
// Function implementation
},
// Other authProvider methods...
};