Hi you are calling suspend function inside observe lambda.
Change the order like this:
viewModel.tickets.observe(viewLifecycleOwner, { data ->
lifecycleScope.launchWhenCreated{
data?.let { list ->
adapter.submitData(list)
}
})
}
CLICK HERE to find out more related problems solutions.