Successfully modified file: /home/Messier82/projects/service-book/app/src/main/java/com/servicebook/ui/reportbug/ReportBugScreen.kt (1 replacements). Here is the updated code: ... ) Card( modifier = Modifier.fillMaxWidth(), colors = CardDefaults.cardColors(containerColor = MaterialTheme.colorScheme.surfaceContainerLow), onClick = { showDeviceInfo = true }, enabled = !state.isSubmitting, ) { Row( modifier = Modifier .fillMaxWidth() .padding(16.dp) .testTag(TestTags.REPORT_BUG_DEVICE_INFO_CARD), verticalAlignment = Alignment.CenterVertically, ) { Text( stringResource(R.string.report_bug_device_info_payload), style = MaterialTheme.typography.titleSmall, modifier = Modifier.weight(1f), ) Icon( Icons.Default.ExpandMore, contentDescription = null, ) } } if (!state.crashReportingEnabled) { Text( ...