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: ... text = stringResource(R.string.report_bug_type_section), style = MaterialTheme.typography.titleSmall, color = MaterialTheme.colorScheme.primary, ) SingleChoiceSegmentedButtonRow(modifier = Modifier.fillMaxWidth().padding(vertical = 8.dp)) { SegmentedButton( selected = state.type == ReportType.BUG, onClick = { viewModel.onEvent(ReportBugEvent.TypeChanged(ReportType.BUG)) }, shape = SegmentedButtonDefaults.itemShape(index = 0, count = 2), enabled = !state.isSubmitting, label = { Text(stringResource(R.string.report_bug_type_bug)) }, modifier = Modifier.testTag(TestTags.REPORT_BUG_TYPE_BUG), ) SegmentedButton( selected = state.type == ReportType.SUGGESTION, onClick = { viewModel.onEvent(ReportBugEvent.TypeChanged(ReportType.SUGGESTION)) }, shape = SegmentedButtonDefaults.itemShape(index = 1, count = 2), enabled = !state.isSubmitting, label = { Text(stringResource(R.string.report_bug_type_suggestion)) }, modifier = Modifier.testTag(TestTags.REPORT_BUG_TYPE_SUGGESTION), ) } Spacer(Modifier.height(16.dp)) OutlinedTextField( ...