UIS-111 | UPSELL Widget visible for fraction of second on PPS (#12431)
This commit is contained in:
@@ -199,7 +199,7 @@ constructor(
|
||||
FirebaseRemoteConfigHelper.NAVI_PAY_POST_PAYMENT_SCREEN_BANNER_VIEW_LIMIT,
|
||||
)
|
||||
|
||||
private val isUpiNumberLinked = MutableStateFlow(false)
|
||||
private val isUpiNumberLinked: MutableStateFlow<Boolean?> = MutableStateFlow(null)
|
||||
|
||||
private val _widgetsRenderingOrder = MutableStateFlow<Map<String, Int>>(emptyMap())
|
||||
val widgetsRenderingOrder = _widgetsRenderingOrder.asStateFlow()
|
||||
@@ -303,7 +303,7 @@ constructor(
|
||||
description =
|
||||
naviPayDefaultConfig.config.linkUpiNumberBannerData.bannerDescription,
|
||||
ctaText = naviPayDefaultConfig.config.linkUpiNumberBannerData.ctaText,
|
||||
isEnabled = !isUpiNumberLinked,
|
||||
isEnabled = isUpiNumberLinked == false,
|
||||
onClickAction = {
|
||||
redirectToScreenBasedOnCtaUrl(
|
||||
upiDestinationRoute =
|
||||
|
||||
Reference in New Issue
Block a user