## Description [Following the latest setup steps](https://www.algolia.com/doc/guides/building-search-ui/installation/react/?client=React+Native) for React Native, I get an error when initializing the `liteClient`. <img width="200" alt="Image" src="https://github.com/user-attachments/assets/2192f6fb-5be9-42ac-a2e7-a8d33c28cbe8" /> ## Reproduction Follow the React Native steps Code: ```typescript import { liteClient as algoliasearch } from "algoliasearch/lite"; const searchClient = algoliasearch(ALGOLIA_CONFIG.appId, ALGOLIA_CONFIG.token); ``` package.json ```json { "react": "18.2.0", "react-instantsearch-core": "^7.15.3", "react-native": "0.74.5", "algoliasearch": "^5.20.2", "expo": "~51.0.38" } ``` If I reduce the algoliasearch version to `4.24.0` and change to not import from the lite client, it works.