Skip to content

Commit

Permalink
Merge pull request #6728 from jasonlyc/bug_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MelvinTo committed Apr 26, 2024
2 parents 69493b1 + 1af00d9 commit 80a42df
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions alarm/Alarm.js
Expand Up @@ -169,11 +169,7 @@ class Alarm {


localizedNotificationTitleKey() {
let key = `notif.title.${this.type}`;
const suffix = this.getIdentitySuffix();
if (suffix)
key = `${key}${suffix}`;
return key;
return `notif.title.${this.type}`;
}

localizedNotificationTitleArray() {
Expand Down

0 comments on commit 80a42df

Please sign in to comment.