Senbdird UIKit - MessageSearchProvider not working properly

MessageSearchProvider’s callback onResultLoaded always returns empty list when I pass MessageSearchQuery prop. Here is the code example:
<MessageSearchProvider
searchString={searchTerm}
messageSearchQuery={{
keyword: “”,
reverse: false,
exactMatch: false,
channelUrl: chatId,
channelCustomType: “”,
messageTimestampFrom: 0,
messageTimestampTo: 999999999999,
order: MessageSearchOrder.TIMESTAMP,
advancedQuery: false,
targetFields: ,
totalCount: 10,
limit: 10,
hasNext: false,
isLoading: false,
next: async () => ,
}}
channelUrl={chatId}
onResultLoaded={onSearchResultChanged}
/ >

Also I noticed that messageTimestampFrom is ignored in the search request.

[UIKit Version]
@sendbird/uikit-react”: “3.2.5”