Karan Sharma
12/03/2024, 11:21 AM// alertsJsonList - is a list of ServiceAlert() and may have html content in message field.navController.navigate(route = ServiceAlertRoute(alertsJsonList = alertsJsonList),navOptions = NavOptions.Builder().setLaunchSingleTop(singleTop = true).build(),)@Serializabledata class ServiceAlert(val heading: String,val message: String, // can have html content sometimes as Stringval priority: ServiceAlertPriority, // this is Enum - tried to remove it and confirmed this is not the issue.)kotlin = "2.1.0"navigationCompose = "2.8.0-alpha10"kotlinxCoroutines = "1.9.0"compose-multiplatform = "1.7.1"kotlinxSerializationJson = "1.7.3"ksp = "2.1.0-1.0.29"