### Description The **params** prop in the **useInfiniteFind** hook is typed as **any**. This is not safe and can cause errors. ### Solution We should give it a proper type instead of any. ### Why? Using **any** can lead to bugs because TypeScript won’t check the types. A clear type makes the code safer and easier to understand.