fix(lint): remover tipagem indefinida (any) no erro de autenticação

This commit is contained in:
2026-08-17 21:04:15 +00:00
parent f28e410aad
commit 92625897bf
+2 -2
View File
@@ -347,8 +347,8 @@ export function AuthProvider({ children }: { children: ReactNode }) {
return { error };
}
return { error: null };
} catch (err: any) {
return { error: err };
} catch (err) {
return { error: err as Error };
}
};