chore: Minor fix

This commit is contained in:
iamsivin
2024-03-01 13:51:25 +05:30
parent ccf90b030b
commit 84ab32f571
@@ -236,12 +236,13 @@ export default {
snoozeNotification(snoozedUntil) {
this.$store
.dispatch('notifications/snooze', {
id: this.notificationId || this.notificationIdToSnooze,
id: this.notificationIdToSnooze || this.notificationId,
snoozedUntil,
})
.then(() => {
this.showAlert(this.$t('INBOX.ALERTS.SNOOZE'));
});
this.notificationIdToSnooze = null;
},
onCmdSnoozeNotification(snoozeType) {
if (snoozeType === wootConstants.SNOOZE_OPTIONS.UNTIL_CUSTOM_TIME) {