Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 107690cb authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Correct the disable button text" into udc-dev

parents 53a2145d ac973545
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -112,11 +112,10 @@ class AppDisableButton(
    @Composable
    private fun confirmDialogPresenter() = rememberAlertDialogPresenter(
        confirmButton = AlertDialogButton(
            text = stringResource(R.string.reset_app_preferences_button),
            text = stringResource(R.string.app_disable_dlg_positive),
            onClick = packageInfoPresenter::disable,
        ),
        dismissButton = AlertDialogButton(stringResource(R.string.cancel)),
        title = stringResource(R.string.app_disable_dlg_positive),
        text = { Text(stringResource(R.string.app_disable_dlg_text)) },
    )
}