I was using Algolia's instantsearch in Next.js project, and I come across this bug Server Error
TypeError: this.client.search is not a function when I try to call findResultsState (Component, {meilisearchClient, indexName, searchState}) and I looked at the call stack trace and the problem was in algoiasearch-helper at singleIndexSearch :point_left: this is a helper function that is causing a problem here. meilisearch client object doen't have a search method in its return object rather it is just an empty string. How do we use react instantsearch in SSR environment? does Instant-MeiliSearch solve this problem?