fix: show readable copy for reminder notification toggle dialogs
Replace DIRECT_PUSH_TITLE in confirm and success messages with "reminder notifications" so users see clear text instead of the internal constant name.
This commit is contained in:
@@ -1239,7 +1239,7 @@ export default class AccountViewView extends Vue {
|
||||
if (this.isNativePlatform) {
|
||||
// Show confirmation dialog
|
||||
this.notify.confirm(
|
||||
`Would you like to turn off ${DIRECT_PUSH_TITLE}?`,
|
||||
"Would you like to turn off reminder notifications?",
|
||||
async () => {
|
||||
try {
|
||||
// Cancel the native notification
|
||||
@@ -1256,7 +1256,7 @@ export default class AccountViewView extends Vue {
|
||||
this.notifyingReminderTime = "";
|
||||
|
||||
this.notify.success(
|
||||
`${DIRECT_PUSH_TITLE} has been turned off.`,
|
||||
"Reminder notifications have been turned off.",
|
||||
TIMEOUTS.STANDARD,
|
||||
);
|
||||
} catch (error) {
|
||||
|
||||
Reference in New Issue
Block a user