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:
Jose Olarte III
2026-02-26 16:32:06 +08:00
parent 25c3cd99e4
commit baac36607b

View File

@@ -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) {