Issue
How can I swap list in jetpack compose? Viewmodel api fetch is triggering multiple times
Solution
it seems when recomposition is happening, getting triggered multiple times.
testViewModel.fetchCountryList()
can you try this and check
LaunchedEffect(Unit) {
testViewModel.fetchCountryList()
}
Answered By - notTdar
Answer Checked By - Pedro (JavaFixing Volunteer)