NTP-31807 | Mehul | duplicate key crash fix (#14667)
Co-authored-by: Android Bot <android-bot@navi.com>
This commit is contained in:
@@ -82,6 +82,7 @@ import com.navi.bbps.getBillTitleFromAccountHolderNameOrPrimaryCustomerParams
|
||||
import com.navi.bbps.noRippleClickableWithDebounce
|
||||
import com.navi.common.R as CommonR
|
||||
import com.navi.common.constants.GENERIC_LOADER_LOTTIE_FILE_NAME
|
||||
import com.navi.common.utils.appendStrings
|
||||
import com.navi.design.font.FontWeightEnum
|
||||
import com.navi.design.font.getFontWeight
|
||||
import com.navi.design.font.naviFontFamily
|
||||
@@ -268,7 +269,7 @@ fun RenderBillerListScreen(
|
||||
if (isSearchQueryEmpty and animatedRecentBills.isNotEmpty()) {
|
||||
itemsIndexed(
|
||||
items = animatedRecentBills,
|
||||
key = { _, billItem -> billItem.billId },
|
||||
key = { index, billItem -> index.toString().appendStrings(billItem.billId) },
|
||||
) { index, billItem ->
|
||||
AnimatedVisibility(
|
||||
visible =
|
||||
|
||||
Reference in New Issue
Block a user