Successfully modified file: /home/Messier82/projects/service-book/app/src/main/java/com/servicebook/ui/settings/CategoriesScreen.kt (1 replacements). Here is the updated code: ... viewModel: CategoriesViewModel = viewModel( factory = ViewModelFactory(LocalContext.current.applicationContext as ServiceBookApplication), ), ) { val context = LocalContext.current val state by viewModel.state.collectAsStateWithLifecycle() var showAddDialog by remember { mutableStateOf(false) } if (state.pendingDeleteId != null) { val label = state.custom.find { it.id == state.pendingDeleteId }?.label ?: "" ...