Why when i pass on props queries={{ channelListQuery: { includeEmpty: true } }} app is stuck and make endless requests

[Problem/Question]
When i try to pass queries into ChannelList component app is stuck


// If problem, please fill out the below. If question, please delete.
[UIKit Version]
// What version of the SDK are you using?

[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.

[Frequency]
// How frequently is this issue occurring?

[Current impact]
// How is this currently impacting your implementation?

Hi @1sokolov.stas1

Welcome to Sendbird Community!

You might need to set the disableAutoSelect option as well.
Please refer to the following.

<ChannelList
  disableAutoSelect
  queries={{
    channelListQuery: {
      includeEmpty: true
    }
  }}
  onChannelSelect={(channel) => {
    if (channel && channel.url) {
      setCurrentChannelUrl(channel.url);
    }
  }}
/>