File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
mobile/android/fenix/app/src/main/java/org/mozilla/fenix/settings Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,14 +44,14 @@ internal fun DeleteAddressDialog(store: AddressStore) {
4444 onDismissRequest = { store.dispatch(DeleteDialogAction .CancelTapped ) },
4545 confirmButton = {
4646 TextButton (
47- text = stringResource(R .string.addressess_confirm_dialog_ok_button).uppercase() ,
47+ text = stringResource(R .string.addressess_confirm_dialog_ok_button),
4848 onClick = { store.dispatch(DeleteDialogAction .DeleteTapped ) },
4949 modifier = Modifier .testTag(EditAddressTestTag .DIALOG_DELETE_BUTTON ),
5050 )
5151 },
5252 dismissButton = {
5353 TextButton (
54- text = stringResource(R .string.addressess_confirm_dialog_cancel_button).uppercase() ,
54+ text = stringResource(R .string.addressess_confirm_dialog_cancel_button),
5555 onClick = { store.dispatch(DeleteDialogAction .CancelTapped ) },
5656 modifier = Modifier .testTag(EditAddressTestTag .DIALOG_CANCEL_BUTTON ),
5757 )
Original file line number Diff line number Diff line change @@ -378,7 +378,7 @@ private fun LoginDeletionDialog(
378378 onClick = onDeleteTapped,
379379 ) {
380380 Text (
381- text = stringResource(R .string.bookmark_menu_delete_button).uppercase() ,
381+ text = stringResource(R .string.bookmark_menu_delete_button),
382382 )
383383 }
384384 },
@@ -387,7 +387,7 @@ private fun LoginDeletionDialog(
387387 onClick = onCancelTapped,
388388 ) {
389389 Text (
390- text = stringResource(R .string.bookmark_delete_negative).uppercase() ,
390+ text = stringResource(R .string.bookmark_delete_negative),
391391 )
392392 }
393393 },
You can’t perform that action at this time.
0 commit comments