Sendbird desk ticket retrival

[Problem/Question]
// Detailed description of issue.
HI, i got error when trying to call
SendbirdDesk.Ticket.getClosedList(0, (closedTickets, error) => {
if (error) {
console.log(‘closedTickets err’, error.message);
console.log(‘closedTickets err’, error.stack);
} else {
for (let i = 0; i < closedTickets.length; i++) {
console.log(‘Item close:’, closedTickets[i]);
}
}
});

it return error : property status does not exist,
,
currently using expo go, it got error when running in android and ios, but in web it work find, i can retrive the list of ticket.


// If problem, please fill out the below. If question, please delete.
[SDK Version]
// What version of the SDK are you using?
“sendbird-desk”: “^1.1.2”,

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

just follow the sample code reference , bur convert into REACT NATIVE,

[Current impact]
// How is this currently impacting your implementation?
major impact as i need to be able to run this feature on end user side, to enable desk system.